Show
Ignore:
Timestamp:
07/22/08 12:10:06 (5 months ago)
Author:
donncha
Message:

Only show the "create it now!" message when blog registration is enabled, fixes #628, props lambic

Files:

Legend:

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

    r1367 r1393  
    418418                                else 
    419419                                        $newblog = 'http://' . $newblogname . '.' . $current_site->domain . $current_site->path; 
    420                                 printf(__("<p><em>The blog you were looking for, <strong>%s</strong> doesn't exist but you can create it now!</em></p>"), $newblog ); 
     420                                if ($active_signup == 'blog' || $active_signup == 'all') 
     421                                        printf(__("<p><em>The blog you were looking for, <strong>%s</strong> doesn't exist but you can create it now!</em></p>"), $newblog ); 
     422                                else 
     423                                        printf(__("<p><em>The blog you were looking for, <strong>%s</strong> doesn't exist.</em></p>"), $newblog ); 
    421424                        } 
    422425                        break;