Changeset 3458:9cd71ccc20d9 for inc/admin
- Timestamp:
- 12/17/16 18:31:53 (9 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inc/admin/lib.dc.page.php
r3457 r3458 271 271 $notice_error = $core->callBehavior('adminPageNotificationError',$core->error); 272 272 273 if ( !empty($notice_error)) {273 if (isset($notice_error) && !empty($notice_error)) { 274 274 $res .= $notice_error; 275 275 } else { … … 288 288 $notice = $core->callBehavior('adminPageNotification',$notification); 289 289 290 $res = (!empty($notice) ? $notice : self::getNotification($notification));290 $res .= (isset($notice) && !empty($notice) ? $notice : self::getNotification($notification)); 291 291 } 292 292 unset($_SESSION['notifications']);
Note: See TracChangeset
for help on using the changeset viewer.