summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: daa5264)
raw | patch | inline | side by side (parent: daa5264)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 4 Mar 2008 14:27:18 +0000 (14:27 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 4 Mar 2008 14:27:18 +0000 (14:27 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@9321 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-plugins/log/addons/logview/class_gosa_logview.inc | patch | blob | history |
diff --git a/gosa-plugins/log/addons/logview/class_gosa_logview.inc b/gosa-plugins/log/addons/logview/class_gosa_logview.inc
index 41e98269d6c41d21e973524062ce3e1e39859840..fa3f4729e6296c226b0a7393e7d2cb8cf5a8be2e 100644 (file)
$result = @mysql_query($query);
if(!$result){
new log("debug","logview","",array(),@mysql_error());
- }
-
- /* Display results */
- $mod= 0;
-
- /* Add entries to result str */
- while ($line = mysql_fetch_array($result, MYSQL_ASSOC)){
-
- /* Toggle background color */
- if ( ($mod++) & 1){
- $col= "background-color: #ECECEC;";
- } else {
- $col= "background-color: #F5F5F5;";
- }
+ msg_dialog::display(_("Error"), _("Can not query log database."), ERROR_DIALOG);
+ }else{
- $base = ", ".substr($this->config->current['BASE'],0,5)."...";
-
- if(isset($this->uid_map[$line['user']])){
- $user = $this->uid_map[$line['user']];
- }else{
- $user = preg_replace("/,".normalizePreg($this->config->current['BASE'])."/",$base,$line['user']);
+ /* Display results */
+ $mod= 0;
+
+ /* Add entries to result str */
+ while ($line = mysql_fetch_array($result, MYSQL_ASSOC)){
+
+ /* Toggle background color */
+ if ( ($mod++) & 1){
+ $col= "background-color: #ECECEC;";
+ } else {
+ $col= "background-color: #F5F5F5;";
+ }
+
+ $base = ", ".substr($this->config->current['BASE'],0,5)."...";
+
+ if(isset($this->uid_map[$line['user']])){
+ $user = $this->uid_map[$line['user']];
+ }else{
+ $user = preg_replace("/,".normalizePreg($this->config->current['BASE'])."/",$base,$line['user']);
+ }
+ $object = preg_replace("/,".normalizePreg($this->config->current['BASE'])."/",$base,$line['object']);
+
+ $res.=" <tr style=\"$col\">\n";
+ $res.=" <td title='".$line['objecttype']."'>".$line['action']."</td>";
+ $res.=" <td>".date("H:i:s d.m.Y",($line['timestamp'] + $this->timezone_offset))."</td>";
+ $res.=" <td title='".$line['user']."'>".preg_replace("/,/",", ",$user)."</td>";
+ $res.=" <td title='".$line['objecttype']."'>".$line['objecttype']."</td>";
+ $res.=" <td title='".$line['object']."'>".preg_replace("/,/",", ",$object)."</td>";
+ $res.=" <td>".$line['result']."</td>";
+ $res.=" </tr>\n";
}
- $object = preg_replace("/,".normalizePreg($this->config->current['BASE'])."/",$base,$line['object']);
-
- $res.=" <tr style=\"$col\">\n";
- $res.=" <td title='".$line['objecttype']."'>".$line['action']."</td>";
- $res.=" <td>".date("H:i:s d.m.Y",($line['timestamp'] + $this->timezone_offset))."</td>";
- $res.=" <td title='".$line['user']."'>".preg_replace("/,/",", ",$user)."</td>";
- $res.=" <td title='".$line['objecttype']."'>".$line['objecttype']."</td>";
- $res.=" <td title='".$line['object']."'>".preg_replace("/,/",", ",$object)."</td>";
- $res.=" <td>".$line['result']."</td>";
-# if($line['repeated'] == 1){
-# $res.=" <td>-</td>";
-# }else{
-# $res.=" <td>".($line['repeated']-1)."</td>";
-# }
- $res.=" </tr>\n";
}
- mysql_close($link);
+ @mysql_close($link);
$smarty->assign("mode".$this->sort, $sort_sign);
$smarty->assign("search_result", $res);
}