0)) $fDomain = $list_domains[0]; } elseif ($_SERVER['REQUEST_METHOD'] == "POST") { if (isset ($_POST['fDomain'])) $fDomain = escape_string ($_POST['fDomain']); } else { die('Unknown request method'); } if (! (check_owner ($SESSID_USERNAME, $fDomain) || authentication_has_role('global-admin'))) { $error = 1; $tMessage = $PALANG['pViewlog_result_error']; } // we need to initialize $tLog as an array! $tLog = array(); if ($error != 1) { $query = "SELECT timestamp,username,domain,action,data FROM $table_log WHERE domain='$fDomain' ORDER BY timestamp DESC LIMIT 10"; if ('pgsql'==$CONF['database_type']) { $query = "SELECT extract(epoch from timestamp) as timestamp,username,domain,action,data FROM $table_log WHERE domain='$fDomain' ORDER BY timestamp DESC LIMIT 10"; } $result=db_query($query); if ($result['rows'] > 0) { while ($row = db_array ($result['result'])) { if ('pgsql'==$CONF['database_type']) { $row['timestamp']=gmstrftime('%c %Z',$row['timestamp']); } $tLog[] = $row; } } } include ("templates/header.php"); include ("templates/menu.php"); include ("templates/viewlog.php"); include ("templates/footer.php"); /* vim: set expandtab softtabstop=3 tabstop=3 shiftwidth=3: */ ?>