summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: f99ab0c)
raw | patch | inline | side by side (parent: f99ab0c)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 14 Jul 2010 08:47:40 +0000 (08:47 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 14 Jul 2010 08:47:40 +0000 (08:47 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@19007 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-plugins/gofon/gofon/fonreports/class_fonreport.inc | patch | blob | history |
diff --git a/gosa-plugins/gofon/gofon/fonreports/class_fonreport.inc b/gosa-plugins/gofon/gofon/fonreports/class_fonreport.inc
index 2ab5fde8c6aa32c0c6061e31ba657faef047efd4..61b7b685a309ba76e301d3d3f8ea05ee0a1978fa 100644 (file)
{
$fonfilter= session::get("fonfilter");
if(isset($_POST['EntryPerPage'])){
- $this->range = $_POST['EntryPerPage'];
+ $this->range = get_post('EntryPerPage');
}
if (isset($_GET['start'])){
$this->start= (int)$_GET['start'];
*****************/
$smarty->assign("plug", "?plug=".validate($_GET['plug']));
- $smarty->assign("search_for", htmlentities($this->search_for));
+ $smarty->assign("search_for", set_post($this->search_for));
$smarty->assign("months", $months);
$smarty->assign("month_select", $this->month);
$smarty->assign("years", $years);
foreach($this->config->data['SERVERS']['FON'] as $key => $server){
$servers[$server['SERVER']] = $server['SERVER'];
}
- $smarty->assign("servers", $servers);
- $smarty->assign("selected_server", $this->selected_server);
+ $smarty->assign("servers", set_post($servers));
+ $smarty->assign("selected_server", set_post($this->selected_server));
/* Connecting, selecting database */
if (!isset($this->config->data['SERVERS']['FON'][0])){