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