From 3e9881145d5fbe08d94b06f1ddd149ea70c6d99e Mon Sep 17 00:00:00 2001 From: Julio Montoya Date: Thu, 2 Jun 2011 16:40:54 +0200 Subject: [PATCH] Removing the "fix" CSS files cllas #3544 --- main/inc/global_error_message.inc.php | 19 ++++++++----------- main/inc/header.inc.php | 10 ---------- main/inc/reduced_header.inc.php | 9 --------- main/install/index.php | 6 +++--- 4 files changed, 11 insertions(+), 33 deletions(-) diff --git a/main/inc/global_error_message.inc.php b/main/inc/global_error_message.inc.php index c2acc7453e..4ff9b381ca 100755 --- a/main/inc/global_error_message.inc.php +++ b/main/inc/global_error_message.inc.php @@ -53,8 +53,8 @@ if (is_int($global_error_code) && $global_error_code > 0) { $css_path = 'main/css/'; $css_file = $css_path.$theme.'default.css'; - $css_base_file = $css_path.'fix.css'; - $css_base_chamilo_file = $css_path.'fix_chamilo.css'; + $css_base_file = $css_path.'base.css'; + $css_base_chamilo_file = $css_path.'base_chamilo.css'; $root_sys = str_replace('\\', '/', realpath(dirname(__FILE__).'/../../')).'/'; $root_rel = htmlentities($_SERVER['PHP_SELF']); @@ -78,24 +78,21 @@ if (is_int($global_error_code) && $global_error_code > 0) { } $installation_guide_url = $root_rel.'documentation/installation_guide.html'; - - $css_file = $root_sys.$css_file; - if (file_exists($css_file)) { - $css_def = @file_get_contents($css_file); - } else { - $css_def = ''; - } + $css_def = ''; $css_base_chamilo_file = $root_sys.$css_base_chamilo_file; if (file_exists($css_base_chamilo_file)) { $css_def .= @file_get_contents($css_base_chamilo_file); } - $css_base_file = $root_sys.$css_base_file; + $css_base_file = $root_sys.$css_base_file; if (file_exists($css_base_file)) { $css_def .= @file_get_contents($css_base_file); } - + $css_file = $root_sys.$css_file; + if (file_exists($css_file)) { + $css_def .= @file_get_contents($css_file); + } $css_def = str_replace('behavior:url("/main/css/csshover3.htc");', '', $css_def); $css_def = str_replace('main/', $root_rel.'main/', $css_def); diff --git a/main/inc/header.inc.php b/main/inc/header.inc.php index 1dfd2cef38..77429061fe 100755 --- a/main/inc/header.inc.php +++ b/main/inc/header.inc.php @@ -110,16 +110,6 @@ echo '@import "'.api_get_path(WEB_CSS_PATH).$my_style.'/default.css";'; //Course CSS echo '@import "'.api_get_path(WEB_CSS_PATH).$my_style.'/course.css";'; -//Fix CSS -echo '@import "'.api_get_path(WEB_CSS_PATH).'fix.css";'; - -//Fix chamilo CSS -if (in_array(api_get_visual_theme(), array('chamilo','chamilo_red','chamilo_blue','chamilo_orange','chamilo_green','chamilo_electric_blue'))) { - echo '@import "'.api_get_path(WEB_CSS_PATH).'fix_chamilo.css";'; -} else { - echo '@import "'.api_get_path(WEB_CSS_PATH).'fix_classic.css";'; -} - if ($navigator_info['name']=='Internet Explorer' && $navigator_info['version']=='6') { echo 'img, div { behavior: url('.api_get_path(WEB_LIBRARY_PATH).'javascript/iepngfix/iepngfix.htc) } '; } diff --git a/main/inc/reduced_header.inc.php b/main/inc/reduced_header.inc.php index 4ab1079bd6..fd7cc8b930 100755 --- a/main/inc/reduced_header.inc.php +++ b/main/inc/reduced_header.inc.php @@ -106,15 +106,6 @@ if (in_array(api_get_visual_theme(), array('chamilo','chamilo_red','chamilo_blue //Default CSS echo '@import "'.api_get_path(WEB_CSS_PATH).$my_style.'/default.css";'; - -//Fix CSS -echo '@import "'.api_get_path(WEB_CSS_PATH).'fix.css";'; -//Fix chamilo CSS -if (in_array(api_get_visual_theme(), array('chamilo','chamilo_red','chamilo_blue','chamilo_orange','chamilo_green','chamilo_electric_blue'))) { - echo '@import "'.api_get_path(WEB_CSS_PATH).'fix_chamilo.css";'; -} else { - echo '@import "'.api_get_path(WEB_CSS_PATH).'fix_classic.css";'; -} ?> /*]]>*/ diff --git a/main/install/index.php b/main/install/index.php index 5ad39189f0..a17d08d385 100755 --- a/main/install/index.php +++ b/main/install/index.php @@ -307,9 +307,9 @@ if ($encryptPassForm == '1') { — <?php echo get_lang('ChamiloInstallation').' — '.get_lang('Version_').' '.$new_version; ?>