Changeset 1132
- Timestamp:
- 06/05/2008 05:59:39 AM (2 years ago)
- Location:
- trunk
- Files:
-
- 9 modified
-
actions/mychanges/mychanges.php (modified) (1 diff)
-
actions/mypages/mypages.php (modified) (1 diff)
-
actions/orphanedpages/orphanedpages.php (modified) (1 diff)
-
actions/recentchanges/recentchanges.php (modified) (2 diffs)
-
actions/recentcomments/recentcomments.php (modified) (1 diff)
-
actions/recentlycommented/recentlycommented.php (modified) (1 diff)
-
actions/wantedpages/wantedpages.php (modified) (1 diff)
-
handlers/edit/edit.php (modified) (2 diffs)
-
handlers/mindmap_fullscreen/mindmap_fullscreen.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/actions/mychanges/mychanges.php
r1021 r1132 129 129 if ($my_edits_count == 0) 130 130 { 131 $output .= '<em >'.STATUS_NO_PAGES_EDITED.'</em>';131 $output .= '<em class="error">'.STATUS_NO_PAGES_EDITED.'</em>'; 132 132 } 133 133 } 134 134 else 135 135 { 136 $output .= '<em >'.WIKKA_NO_PAGES_FOUND.'</em>';136 $output .= '<em class="error">'.WIKKA_NO_PAGES_FOUND.'</em>'; 137 137 } 138 138 } 139 139 else 140 140 { 141 $output .= '<em >'.MYCHANGES_NOT_LOGGED_IN.'</em>';141 $output .= '<em class="error">'.MYCHANGES_NOT_LOGGED_IN.'</em>'; 142 142 } 143 143 -
trunk/actions/mypages/mypages.php
r1027 r1132 68 68 else 69 69 { 70 echo '<em >'.OWNED_NO_PAGES.'</em>';70 echo '<em class="error">'.OWNED_NO_PAGES.'</em>'; 71 71 } 72 72 } 73 73 else 74 74 { 75 echo '<em >'.OWNED_NOT_LOGGED_IN.'</em>';75 echo '<em class="error">'.OWNED_NOT_LOGGED_IN.'</em>'; 76 76 } 77 77 ?> -
trunk/actions/orphanedpages/orphanedpages.php
r736 r1132 22 22 else 23 23 { 24 print '<em >'.NO_ORPHANED_PAGES.'</em>';24 print '<em class="error">'.NO_ORPHANED_PAGES.'</em>'; 25 25 } 26 26 ?> -
trunk/actions/recentchanges/recentchanges.php
r1107 r1132 120 120 if ($readable == 0) 121 121 { 122 echo '<em >'.RECENTCHANGES_NONE_ACCESSIBLE.'</em>';122 echo '<em class="error">'.RECENTCHANGES_NONE_ACCESSIBLE.'</em>'; 123 123 } 124 124 echo '</ul>'."\n"; … … 136 136 else 137 137 { 138 echo '<em >'.RECENTCHANGES_NONE_FOUND.'</em>';138 echo '<em class="error">'.RECENTCHANGES_NONE_FOUND.'</em>'; 139 139 } 140 140 ?> -
trunk/actions/recentcomments/recentcomments.php
r907 r1132 65 65 if ($readable == 0) 66 66 { 67 echo '<em >'.RECENTCOMMENTS_NONE_ACCESSIBLE.'</em>';67 echo '<em class="error">'.RECENTCOMMENTS_NONE_ACCESSIBLE.'</em>'; 68 68 } 69 69 } 70 70 else 71 71 { 72 echo '<em >'.RECENTCOMMENTS_NONE_FOUND.'</em>';72 echo '<em class="error">'.RECENTCOMMENTS_NONE_FOUND.'</em>'; 73 73 } 74 74 ?> -
trunk/actions/recentlycommented/recentlycommented.php
r736 r1132 86 86 if ($readable == 0) 87 87 { 88 echo '<em >'.RECENTLYCOMMENTED_NONE_ACCESSIBLE.'</em>';88 echo '<em class="error">'.RECENTLYCOMMENTED_NONE_ACCESSIBLE.'</em>'; 89 89 } 90 90 } 91 91 else 92 92 { 93 echo '<em >'.RECENTLYCOMMENTED_NONE_FOUND.'</em>';93 echo '<em class="error">'.RECENTLYCOMMENTED_NONE_FOUND.'</em>'; 94 94 } 95 95 -
trunk/actions/wantedpages/wantedpages.php
r736 r1132 106 106 else 107 107 { 108 print '<em >'.NO_WANTED_PAGES.'</em>';108 print '<em class="error">'.NO_WANTED_PAGES.'</em>'; 109 109 } 110 110 -
trunk/handlers/edit/edit.php
r1109 r1132 85 85 <?php 86 86 if (!(preg_match(VALID_PAGENAME_PATTERN, $this->tag))) { //TODO use central regex library or (better!) IsWikiName() 87 echo '<em >'.sprintf(WIKKA_ERROR_INVALID_PAGENAME,$this->tag).'</em>';87 echo '<em class="error">'.sprintf(WIKKA_ERROR_INVALID_PAGENAME,$this->tag).'</em>'; 88 88 } 89 89 elseif ($this->HasAccess("write") && $this->HasAccess("read")) … … 287 287 else 288 288 { 289 $message = '<em >'.$this->Format(ERROR_NO_WRITE_ACCESS).'</em><br />'."\n<br />\n";289 $message = '<em class="error">'.$this->Format(ERROR_NO_WRITE_ACCESS).'</em><br />'."\n<br />\n"; 290 290 if ($this->ExistsPage($this->tag)) $message .= '<a href="'.$this->Href('showcode').'" title="'.SHOWCODE_LINK_TITLE.'">'.SHOWCODE_LINK.'</a>'."<br />\n"; 291 291 echo $message; -
trunk/handlers/mindmap_fullscreen/mindmap_fullscreen.php
r738 r1132 135 135 136 136 } else { 137 echo '< span class="error"><em>'.ERROR_INVALID_MM_SYNTAX.'<br />'.sprintf(PROPER_USAGE_MM_SYNTAX,SAMPLE_SYNTAX1,SAMPLE_SYNTAX2).'</em></span>';137 echo '<em class="error">'.ERROR_INVALID_MM_SYNTAX.'<br />'.sprintf(PROPER_USAGE_MM_SYNTAX,SAMPLE_SYNTAX1,SAMPLE_SYNTAX2).'</em>'; 138 138 } 139 139