2
0
mirror of https://github.com/ACSPRI/queXS synced 2024-04-02 12:12:16 +00:00

Added AUTO_LOGOUT_MINUTES functionality to rs scripts

This commit is contained in:
azammitdcarf
2011-01-25 04:26:05 +00:00
parent c9eabe5408
commit 09c75bcc7b
7 changed files with 61 additions and 7 deletions

View File

@@ -44,7 +44,15 @@ include ("functions/functions.xhtml.php");
*/
include ("lang.inc.php");
xhtml_head(T_("Respondent Selection - Business answers"),true,array("css/rs.css","include/jquery-ui/css/smoothness/jquery-ui-1.8.2.custom.css"), array("js/popup.js","include/jquery-ui/js/jquery-1.4.2.min.js","include/jquery-ui/js/jquery-ui-1.8.2.custom.min.js"));
$js = array("js/popup.js","include/jquery-ui/js/jquery-1.4.2.min.js","include/jquery-ui/js/jquery-ui-1.8.2.custom.min.js")
if (AUTO_LOGOUT_MINUTES !== false)
{
$js[] = "js/childnap.js";
}
xhtml_head(T_("Respondent Selection - Business answers"),true,array("css/rs.css","include/jquery-ui/css/smoothness/jquery-ui-1.8.2.custom.css"), $js));
?>