Changeset 953
- Timestamp:
- 07/07/10 13:17:06 (2 months ago)
- Location:
- trunk
- Files:
-
- 3 modified
-
install/index.php (modified) (1 diff)
-
plugins/profiler/classes/hooks/HookProfiler.class.php (modified) (1 diff)
-
templates/skin/new/header.light.tpl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/install/index.php
r918 r953 957 957 958 958 if (@extension_loaded('mbstring')){ 959 $aMbInfo=mb_get_info(); 960 961 if(!in_array(strtolower($aMbInfo['http_input']), $this->aValidEnv['http_input']) 962 or !in_array(strtolower($aMbInfo['http_output']), $this->aValidEnv['http_output']) 963 or !in_array(strtolower($aMbInfo['func_overload']), $this->aValidEnv['func_overload'])) { 964 $bOk = false; 965 $this->Assign('validate_mbstring', '<span style="color:red;">'.$this->Lang('no').'</span>'); 966 } else { 967 $this->Assign('validate_mbstring', '<span style="color:green;">'.$this->Lang('yes').'</span>'); 968 } 959 $this->Assign('validate_mbstring', '<span style="color:green;">'.$this->Lang('yes').'</span>'); 969 960 } else { 970 961 $bOk = false; -
trunk/plugins/profiler/classes/hooks/HookProfiler.class.php
r926 r953 26 26 * Хук для вставки HTML кода 27 27 */ 28 $this->AddHook('template_body_end', 'Profiler'); 28 if ($oUserCurrent=$this->User_GetUserCurrent() and $oUserCurrent->isAdministrator()) { 29 $this->AddHook('template_body_end', 'Profiler'); 30 } 29 31 } 30 32 -
trunk/templates/skin/new/header.light.tpl
r937 r953 7 7 <title>{$sHtmlTitle}</title> 8 8 <meta http-equiv="content-type" content="text/html; charset=utf-8" /> 9 <!-- Styles --> 10 <link rel="stylesheet" type="text/css" href="{cfg name='path.static.skin'}/css/style.css?v=1" /> 11 <!--[if IE 6]><link rel="stylesheet" type="text/css" href="{cfg name='path.static.skin'}/css/ie6.css?v=1" /><![endif]--> 12 <!--[if gte IE 7]><link rel="stylesheet" type="text/css" href="{cfg name='path.static.skin'}/css/ie7.css?v=1" /><![endif]--> 9 10 {$aHtmlHeadFiles.css} 11 13 12 {if $bRefreshToHome} 14 13 <meta HTTP-EQUIV="Refresh" CONTENT="3; URL={cfg name='path.root.web'}/">
