summaryrefslogtreecommitdiffstats
path: root/inc/lib_log.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/lib_log.php')
-rwxr-xr-xinc/lib_log.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/lib_log.php b/inc/lib_log.php
index 4f34728ff1d..980011e05e2 100755
--- a/inc/lib_log.php
+++ b/inc/lib_log.php
@@ -59,7 +59,7 @@ class OC_LOG {
*/
public static function show(){
global $CONFIG_DATEFORMAT;
- echo('<center><table cellpadding="6" cellspacing="0" border="0" class="browser">');
+ echo('<div class="center"><table cellpadding="6" cellspacing="0" border="0" class="browser">');
$result = OC_DB::query('select timestamp,user,type,message from log order by timestamp desc limit 20');
$count=OC_DB::numrows($result);
@@ -73,7 +73,7 @@ class OC_LOG {
echo('<td class="nametext">'.$entry['message'].'</td>');
echo('</tr>');
}
- echo('</table></center>');
+ echo('</table></div>');
OC_DB::free_result($result);
}