* changed mb_strtolower functions to strtolower() - was useless in this
case
* attemp to fix some bug with PHPMailer not finding its language file
* added .idea (phpstorm) to .gitignore
This commit is contained in:
slawkens1
2018-01-26 08:04:28 +01:00
parent 2c12ef93aa
commit 4ffb6cf8eb
5 changed files with 20 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();
@@ -442,6 +442,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'])));
}
?>