From: Jakob Sack Date: Mon, 23 May 2011 20:19:53 +0000 (+0200) Subject: Adapt "log" to latest database cahnges, use preferences instead of appconfig X-Git-Tag: v3.0~267^2~558^2~17 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=c948137f961eb301e4c3d6accf6b37e102d7ffdf;p=nextcloud-server.git Adapt "log" to latest database cahnges, use preferences instead of appconfig --- diff --git a/log/index.php b/log/index.php index d86da6e0004..675396a4d10 100644 --- a/log/index.php +++ b/log/index.php @@ -25,6 +25,7 @@ //require_once('../../config/config.php'); require_once('../lib/base.php'); require( 'template.php' ); +require( 'preferences.php' ); if( !OC_USER::isLoggedIn()){ header( 'Location: '.OC_HELPER::linkTo( 'index.php' )); @@ -44,17 +45,17 @@ if(isset($_POST['size'])){ $selectedActions[]=$action; } } - OC_APPCONFIG::setValue('log','actions',implode(',',$selectedActions)); - OC_APPCONFIG::setValue('log','pagesize',$_POST['size']); + OC_PREFERENCES::setValue($_SESSION['user_id'],'log','actions',implode(',',$selectedActions)); + OC_PREFERENCES::setValue($_SESSION['user_id'],'log','pagesize',$_POST['size']); } OC_APP::setActiveNavigationEntry( 'log' ); $logs=OC_LOG::get(); -$selectedActions=explode(',',OC_APPCONFIG::getValue('log','actions',implode(',',$allActions))); +$selectedActions=explode(',',OC_PREFERENCES::getValue($_SESSION['user_id'],'log','actions',implode(',',$allActions))); $logs=OC_LOG::filterAction($logs,$selectedActions); -$pageSize=OC_APPCONFIG::getValue('log','pagesize',20); +$pageSize=OC_PREFERENCES::getValue($_SESSION['user_id'],'log','pagesize',20); $pageCount=ceil(count($logs)/$pageSize); $page=isset($_GET['page'])?$_GET['page']:0; if($page>=$pageCount){ @@ -64,7 +65,7 @@ if($page>=$pageCount){ $logs=array_slice($logs,$page*$pageSize,$pageSize); foreach( $logs as &$i ){ - $i['date'] =$i['timestamp']; + $i['date'] =$i['moment']; } $url=OC_HELPER::linkTo( 'log', 'index.php' ).'?page=';