Changeset 706

Show
Ignore:
Timestamp:
07/24/06 15:54:57 (2 years ago)
Author:
donncha
Message:

Print "The blog you were looking for" properly (#98)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-signup.php

    r692 r706  
    338338 
    339339                if ($blog_id) { 
    340                         printf(__("<p><em>The blog you were looking for, <strong> %1$s.%2$s</strong> doesn't exist but you can create it now!</em></p>"), $blog_id, $current_site->domain); 
     340                        if( constant( "VHOST" ) == 'no' ) 
     341                                $newblog = 'http://' . $current_site->domain . $current_site->path . $blog_id . '/'; 
     342                        else 
     343                                $newblog = 'http://' . $blog_id . '.' . $current_site->domain . $current_site->path; 
     344                        printf(__("<p><em>The blog you were looking for, <strong>%s</strong> doesn't exist but you can create it now!</em></p>"), $newblog ); 
    341345                } 
    342346                break;