* changed mb_strtolower functions to strtolower() - was useless in this
case
* attemp to fix some bug with PHPMailer not finding its language file
This commit is contained in:
slawkens1
2018-01-26 08:04:28 +01:00
parent 7e2be69749
commit 51acb739e9
4 changed files with 19 additions and 18 deletions

View File

@@ -46,7 +46,7 @@ if(isset($config['boxes']))
var activeSubmenuItem="<?php echo $tmp; ?>";
var IMAGES="<?php echo $template_path; ?>/images";
var LINK_ACCOUNT="<?php echo BASE_URL; ?>";
function rowOverEffect(object) {
if (object.className == 'moduleRow') object.className = 'moduleRowOver';
}
@@ -54,7 +54,7 @@ if(isset($config['boxes']))
function rowOutEffect(object) {
if (object.className == 'moduleRowOver') object.className = 'moduleRow';
}
function InitializePage() {
LoadLoginBox();
LoadMenu();
@@ -341,7 +341,7 @@ foreach($config['menu_categories'] as $id => $cat) {
<div id='<?php echo $cat['id']; ?>_Submenu' class='Submenu'>
<?php
$default_menu_color = "ffffff";
foreach($menus[$id] as $category => $menu) {
$link_color = '#' . (strlen($menu['color']) == 0 ? $default_menu_color : $menu['color']);
?>
@@ -444,6 +444,6 @@ foreach($config['menu_categories'] as $id => $cat) {
function logo_monster()
{
global $config;
return str_replace(" ", "", trim(mb_strtolower($config['logo_monster'])));
return str_replace(" ", "", trim(strtolower($config['logo_monster'])));
}
?>