*** empty log message ***

This commit is contained in:
sebastian 2005-02-23 22:57:14 +00:00
parent cc2a640933
commit 5fc8fb9d42
20 changed files with 201 additions and 103 deletions

View file

@ -50,8 +50,7 @@
}
#scratchpad {
text-align: center;
width: 300px;
width: 400px;
border-style : dotted;
padding : 5px;
margin-top: 10px;

View file

@ -12,6 +12,10 @@ if (is_array($_REQUEST['popup'])){
$Smarty->display('popup/_close.tpl');
break;
case "_clear_parent":
$Smarty->display('popup/_clear_parent.tpl');
break;
case "login":
$Smarty->assign('login', $uiBrowser->login($Smarty, $ui_fmask));
$Smarty->display('popup/login.tpl');
@ -91,7 +95,7 @@ if ($uiBrowser->userid) {
case "SEARCH":
if (is_array($uiBrowser->SEARCH->criteria) ){
$Smarty->assign('searchres', $uiBrowser->SEARCH->results);
$Smarty->assign('searchres', $uiBrowser->SEARCH->results);
$Smarty->assign('showSearchRes', TRUE);
};

View file

@ -1,4 +1,4 @@
<?php
<?php
require dirname(__FILE__).'/../ui_handler_init.php';
switch($_REQUEST['act']){
@ -137,7 +137,11 @@ switch($_REQUEST['act']){
break;
case "SEARCH.clear":
$uiHandler->SEARCH->clear($_REQUEST);
$uiHandler->SEARCH->clear();
break;
case "SEARCH.setOffset":
$uiHandler->SEARCH->setOffset($_REQUEST['page']);
break;
case "activatePL":