White space fixes
This commit is contained in:
@@ -177,8 +177,8 @@
|
|||||||
// show DEBUG override
|
// show DEBUG override
|
||||||
// true/false
|
// true/false
|
||||||
$DEBUG_FLAG['<host>'] = true;
|
$DEBUG_FLAG['<host>'] = true;
|
||||||
// set postgresql paths (schemas)
|
// set postgresql paths (schemas)
|
||||||
$DB_PATH['<host>'] = PUBLIC_SCHEMA;
|
$DB_PATH['<host>'] = PUBLIC_SCHEMA;
|
||||||
|
|
||||||
// set the USE_DATABASE var, if there is nothing set, we assume TRUE
|
// set the USE_DATABASE var, if there is nothing set, we assume TRUE
|
||||||
$USE_DATABASE = defined('USE_DATABASE') ? USE_DATABASE : true;
|
$USE_DATABASE = defined('USE_DATABASE') ? USE_DATABASE : true;
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
*/
|
*/
|
||||||
var clientPC = navigator.userAgent.toLowerCase(); // Get client info
|
var clientPC = navigator.userAgent.toLowerCase(); // Get client info
|
||||||
var is_gecko = ((clientPC.indexOf('gecko') != -1) && (clientPC.indexOf('spoofer') == -1)
|
var is_gecko = ((clientPC.indexOf('gecko') != -1) && (clientPC.indexOf('spoofer') == -1)
|
||||||
&& (clientPC.indexOf('khtml') == -1) && (clientPC.indexOf('netscape/7.0') == -1));
|
&& (clientPC.indexOf('khtml') == -1) && (clientPC.indexOf('netscape/7.0') == -1));
|
||||||
var is_safari = ((clientPC.indexOf('AppleWebKit') != -1) && (clientPC.indexOf('spoofer') == -1));
|
var is_safari = ((clientPC.indexOf('AppleWebKit') != -1) && (clientPC.indexOf('spoofer') == -1));
|
||||||
var is_khtml = (navigator.vendor == 'KDE' || ( document.childNodes && !document.all && !navigator.taintEnabled ));
|
var is_khtml = (navigator.vendor == 'KDE' || ( document.childNodes && !document.all && !navigator.taintEnabled ));
|
||||||
if (clientPC.indexOf('opera') != -1)
|
if (clientPC.indexOf('opera') != -1)
|
||||||
@@ -62,18 +62,18 @@ function expandTA(ta_id)
|
|||||||
// DESC: shows or hides the menu
|
// DESC: shows or hides the menu
|
||||||
function ShowHideMenu(status, id)
|
function ShowHideMenu(status, id)
|
||||||
{
|
{
|
||||||
if (status == 'show')
|
if (status == 'show')
|
||||||
{
|
{
|
||||||
document.getElementById(id).style.visibility = 'visible';
|
document.getElementById(id).style.visibility = 'visible';
|
||||||
if (document.getElementById('search_results').innerHTML)
|
if (document.getElementById('search_results').innerHTML)
|
||||||
document.getElementById('search_results').style.visibility = 'visible';
|
document.getElementById('search_results').style.visibility = 'visible';
|
||||||
}
|
}
|
||||||
else if (status == 'hide')
|
else if (status == 'hide')
|
||||||
{
|
{
|
||||||
document.getElementById(id).style.visibility = 'hidden';
|
document.getElementById(id).style.visibility = 'hidden';
|
||||||
if (document.getElementById('search_results').style.visibility == 'visible')
|
if (document.getElementById('search_results').style.visibility == 'visible')
|
||||||
document.getElementById('search_results').style.visibility = 'hidden';
|
document.getElementById('search_results').style.visibility = 'hidden';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function ShowHideDiv(id)
|
function ShowHideDiv(id)
|
||||||
|
|||||||
@@ -26,7 +26,7 @@
|
|||||||
<table width="{$table_width}" border="0" cellpadding="0" cellspacing="1">
|
<table width="{$table_width}" border="0" cellpadding="0" cellspacing="1">
|
||||||
<!-- ERROR MSG START //-->
|
<!-- ERROR MSG START //-->
|
||||||
{foreach from=$form_error_msg item=element key=key name=loop}
|
{foreach from=$form_error_msg item=element key=key name=loop}
|
||||||
{include file="edit_error_msg.tpl"}
|
{include file="edit_error_msg.tpl"}
|
||||||
{/foreach}
|
{/foreach}
|
||||||
<!-- ERROR MSG END //-->
|
<!-- ERROR MSG END //-->
|
||||||
<!-- TOP MENU START //-->
|
<!-- TOP MENU START //-->
|
||||||
|
|||||||
Reference in New Issue
Block a user