Changeset 545

Show
Ignore:
Timestamp:
11/07/06 21:05:05 (2 years ago)
Author:
mdawaffe
Message:

Absolutize get_tag_page_link(). Props ear1grey fixes #482.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/bb-includes/template-functions.php

    r544 r545  
    11121112function get_tag_page_link() { 
    11131113        if ( bb_get_option('mod_rewrite') ) 
    1114                 return bb_get_option( 'tagpath' ) . 'tags/'; 
    1115         else 
    1116                 return bb_get_option( 'tagpath' ) . 'tags.php'; 
     1114                return bb_get_option( 'domain' ) . bb_get_option( 'tagpath' ) . 'tags/'; 
     1115        else 
     1116                return bb_get_option( 'domain' ) . bb_get_option( 'tagpath' ) . 'tags.php'; 
    11171117} 
    11181118