Changeset 3299:18dc878c1178
- Timestamp:
- 08/05/16 12:05:20 (9 years ago)
- Branch:
- default
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
CHANGELOG
r3297 r3299 37 37 * New behaviour adminPageHTTPheaders 38 38 * New "Go Top" button displayed for long admin pages 39 * 🐛 → Various bugs and typos fixe s39 * 🐛 → Various bugs and typos fixed 40 40 * 🌼 → Some locales and cosmetic adjustments 41 41 -
inc/core/class.dc.media.php
r3205 r3299 350 350 protected function sortFileHandler($a,$b) 351 351 { 352 if (is_null($a) || is_null($b)) { 353 return (is_null($a) ? 1 : -1); 354 } 352 355 switch ($this->file_sort) 353 356 { … … 485 488 } 486 489 } 487 usort($this->dir['files'],array($this,'sortFileHandler')); 490 try { 491 usort($this->dir['files'],array($this,'sortFileHandler')); 492 } catch (Exception $e) {} 488 493 } 489 494
Note: See TracChangeset
for help on using the changeset viewer.