Skip to content
Snippets Groups Projects
Commit d2a34f4b authored by Lukas Reschke's avatar Lukas Reschke
Browse files

Fixes a issue with the log

parent 6defbc7f
No related branches found
No related tags found
No related merge requests found
......@@ -22,8 +22,8 @@ function compareEntries($a,$b){
}
usort($entries, 'compareEntries');
$tmpl->assign('loglevel',OC_Config::getValue( "loglevel", 2 ), false);
$tmpl->assign('entries',$entries);
$tmpl->assign('loglevel',OC_Config::getValue( "loglevel", 2 ));
$tmpl->assign('entries',$entries,false);
$tmpl->assign('forms',array());
foreach($forms as $form){
$tmpl->append('forms',$form);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment