Changeset 1362
- Timestamp:
- 03/20/10 12:09:08 (3 years ago)
- Location:
- branches/1.2
- Files:
-
- 2 edited
-
content/admin_language.php (modified) (1 diff)
-
libs/Debug.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.2/content/admin_language.php
r1361 r1362 142 142 $lang["admin_maintenance_site_opened"] = SITE_NAME . " will be opened next page view"; 143 143 $lang['admin_maintenance_announcement_updated'] = "Site announcement updated"; 144 $lang['admin_maintenance_system_report_success'] = "New system report generated"; 145 $lang['admin_maintenance_system_report_failure'] = "Unable to generate a system report"; 146 144 147 $lang["admin_theme_maintenance"] = "Maintenance"; 145 148 $lang["admin_theme_maintenance_title"] = "Hotaru Maintenance"; -
branches/1.2/libs/Debug.php
r1361 r1362 115 115 // convert object to text 116 116 $output = $this->logSystemReport($h, $report); 117 118 $h->writeLog('system_report', $output); 119 $h->closeLog('system_report'); 117 if ($output) { 118 $h->writeLog('system_report', $output); 119 $h->closeLog('system_report'); 120 121 $h->message = $h->lang['admin_maintenance_system_report_success']; 122 $h->messageType = 'green'; 123 } else { 124 $h->message = $h->lang['admin_maintenance_system_report_failure']; 125 $h->messageType = 'red'; 126 } 120 127 } 121 128
Note: See TracChangeset
for help on using the changeset viewer.