]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-theme_edit.php
Filters for configurable userid exclusion added:
[mailer.git] / inc / modules / admin / what-theme_edit.php
index 254c7d9152a9c298c45b6e1bb09e5a60bc069fa4..19055c26b56678a514f93c5ecebe0913123e73f6 100644 (file)
@@ -120,14 +120,14 @@ if (!SQL_HASZERONUMS($result)) {
                // Is the loaded theme name != current theme name?
                $content['link'] = $content['theme_path'];
                if ($content['theme_path'] != getCurrentTheme()) {
-                       $content['link'] = '<a href="{%url=modules.php?module=admin&amp;what=theme_edit&amp;default_theme=' . $content['theme_path'] . '%}" title="{--ADMIN_SET_AS_NEW_THEME--}">' . $content['theme_path'] . '</a>';
+                       $content['link'] = '<a href="{%url=modules.php?module=admin&amp;what=theme_edit&amp;default_theme=' . $content['theme_path'] . '%}" title="{--ADMIN_SET_AS_DEFAULT_THEME--}">' . $content['theme_path'] . '</a>';
                } // END - if
 
                // Prepare data for the row template
                $content['email'] = '<a href="mailto:' . $GLOBALS['theme_data']['email'] . '?Subject=[Theme:] ' . $GLOBALS['theme_data']['name'] . ' (' . $content['theme_path'] . ')\>' . $GLOBALS['theme_data']['author'] . '</a>';
 
                // Load row template and switch color
-               $OUT .= loadTemplate('admin_edit_theme_row', true, $content);
+               $OUT .= loadTemplate('admin_edit_theme_row', TRUE, $content);
        } // END - while
 
        // Free memory
@@ -136,13 +136,13 @@ if (!SQL_HASZERONUMS($result)) {
        // No themes found???
        $OUT .= '<tr>
   <td colspan="7" class="bottom" height="60">
-    ' . displayMessage('{--ADMIN_NO_THEMES_FOUND--}', true) . '
+    ' . displayMessage('{--ADMIN_NO_THEMES_FOUND--}', TRUE) . '
   </td>
 </tr>';
 }
 
 // Load template
-loadTemplate('admin_edit_theme', false, $OUT);
+loadTemplate('admin_edit_theme', FALSE, $OUT);
 
 // [EOF]
 ?>