Changeset 4165 for trunk/wp-includes/classes.php
- Timestamp:
- 09/05/2006 06:52:24 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/classes.php
r4156 r4165 26 26 } 27 27 } 28 echo "<div class='updated'><p> $cnt comment";29 if ($cnt != 1 ) echo "s";30 echo " moved to the moderation queue.</p></div>\n";28 echo "<div class='updated'><p> "; 29 printf(__('%d comment(s) moved to the moderation queue.'), $cnt); 30 echo "</p></div>\n"; 31 31 } // End function move_spam 32 32 … … 57 57 $numqueue = $counters[in_queue]; 58 58 59 $body = '<p>' . sprintf(__('Suspected spam comments: <strong>%s</strong>'), $numfound) . '</p>';59 $body = '<p>' . sprintf(__('Suspected spam comments: %s'), "<strong>$numfound</strong>") . '</p>'; 60 60 61 61 if ( count($counters[found]) > 0 ) {
Note: See TracChangeset
for help on using the changeset viewer.