1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-09 08:06:38 +02:00

Added more info to the admin-ui system log.

This commit is contained in:
Cameron
2014-01-17 17:21:42 -08:00
parent 77f4fe0cc4
commit 73ac22452b
2 changed files with 8 additions and 3 deletions

View File

@@ -2683,7 +2683,10 @@ class e_front_model extends e_model
return 0;
}
$sql = e107::getDb();
$res = $sql->db_Update($this->getModelTable(), $this->toSqlQuery('update'), $this->getParam('db_debug', false));
$qry = $this->toSqlQuery('update');
$table = $this->getModelTable();
$res = $sql->db_Update($table, $qry, $this->getParam('db_debug', false));
if(!$res)
{
$this->_db_errno = $sql->getLastErrorNumber();
@@ -2700,6 +2703,8 @@ class e_front_model extends e_model
}
$this->clearCache()->addMessageSuccess(LAN_UPDATED);
e107::getAdminLog()->addSuccess('TABLE: '.$table, false);
e107::getAdminLog()->addSuccess('WHERE: '.$qry['WHERE'], false);
e107::getAdminLog()->save('ADMINUI_02');
@@ -3564,7 +3569,7 @@ class e_admin_tree_model extends e_front_tree_model
}
}
$logData = array('table'=>$table,'where'=>$sqlQry);
$logData = array('TABLE'=>$table, 'WHERE'=>$sqlQry);
e107::getAdminLog()->addArray($logData)->save('ADMINUI_03');
return $res;

View File

@@ -68,7 +68,7 @@ padding:5px;
}
.bbcode-panel .btn-toolbar {
margin:0px 0px 5px 0px;
margin:0px;
}