1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-20 05:11:42 +02:00

Corrected drag-n-drop sorting. Now increments correctly.

This commit is contained in:
Cameron
2015-04-02 12:33:15 -07:00
parent 80c9e440e4
commit 1740161a49
2 changed files with 21 additions and 6 deletions

View File

@@ -755,7 +755,9 @@ class e_admin_log
{
return;
}
$text = '';
foreach($this->_allMessages as $m)
{
$text .= date('Y-m-d H:i:s', $m['time'])." \t".str_pad($m['dislevel'],10," ",STR_PAD_RIGHT)."\t".strip_tags($m['message'])."\n";