Removed 'notice' CSS class from listing tasks
authorRoland Häder <roland@mxchange.org>
Sun, 14 Aug 2011 02:06:24 +0000 (02:06 +0000)
committerRoland Häder <roland@mxchange.org>
Sun, 14 Aug 2011 02:06:24 +0000 (02:06 +0000)
inc/modules/admin/admin-inc.php
inc/modules/admin/overview-inc.php
inc/modules/admin/what-list_task.php
inc/template-functions.php

index 49a632ebf3ff7dcfb19207a0c09b2a46ec0f529b..161865e8aeead83d04ff75560eb51fcf00c14ca0 100644 (file)
@@ -1613,7 +1613,7 @@ function adminCreateUserLink ($userid) {
 // Generate a "link" for the given admin id (admin_id)
 function generateAdminLink ($adminId) {
        // No assigned admin is default
-       $adminLink = '<span class="notice">{--ADMIN_NO_ADMIN_ASSIGNED--}</span>';
+       $adminLink = '{--ADMIN_NO_ADMIN_ASSIGNED--}';
 
        // Zero? = Not assigned
        if (bigintval($adminId) > 0) {
index 846bb4008d83f869edbb6c3279e35e5446aec65c..9084025f2f84bdb3a57f8e2e1699382eb3a47ab6 100644 (file)
@@ -435,7 +435,7 @@ LIMIT 1",
                                // Member found otherwise it's a system task
                                $content['userid'] = generateUserProfileLink($content['userid']);
                        } else {
-                               $content['userid'] = '<span class="notice">{--ADMIN_IS_SYSTEM_TASK--}</span>';
+                               $content['userid'] = '{--ADMIN_IS_SYSTEM_TASK--}';
                        }
 
                        // Add/translate some content
index b0a850757e0fe20fcc3af28418434e396708ec5e..3d842ec5d5e42d8085f1a0a5985f614f8602306f 100644 (file)
@@ -156,7 +156,7 @@ ORDER BY
                                $content['userid'] = generateUserProfileLink($content['userid']);
                        } else {
                                // Is a system task!
-                               $content['userid'] = '<span class="notice">{--ADMIN_IS_SYSTEM_TASK--}</span>';
+                               $content['userid'] = '{--ADMIN_IS_SYSTEM_TASK--}';
                        }
 
                        // Prepare content
index 929c99a3783b2df5dbc2bd542b20030c99bb61cd..78e58e0790efc9f741a0479e5edc5be55e0ee847 100644 (file)
@@ -1819,7 +1819,7 @@ function doTemplateColorSwitch ($template, $clear = false, $return = true) {
 // Helper function for extension registration link
 function doTemplateExtensionRegistrationLink ($template, $clear, $ext_name) {
        // Default is all non-productive
-       $OUT = '<div style="cursor:help" class="notice" title="{%message,ADMIN_EXTENSION_IS_NON_PRODUCTIVE_LINK_TITLE=' . $ext_name . '%}">{--ADMIN_EXTENSION_IS_NON_PRODUCTIVE_LINK--}</div>';
+       $OUT = '<div style="cursor:help" title="{%message,ADMIN_EXTENSION_IS_NON_PRODUCTIVE_LINK_TITLE=' . $ext_name . '%}">{--ADMIN_EXTENSION_IS_NON_PRODUCTIVE_LINK--}</div>';
 
        // Is the given extension non-productive?
        if (isExtensionProductive($ext_name)) {