Index: trunk/core/units/admin/admin_tag_processor.php =================================================================== diff -u -N -r6583 -r6791 --- trunk/core/units/admin/admin_tag_processor.php (.../admin_tag_processor.php) (revision 6583) +++ trunk/core/units/admin/admin_tag_processor.php (.../admin_tag_processor.php) (revision 6791) @@ -373,6 +373,7 @@ //'StylesXmlPath' => '../../inp_styles.xml', // 'Debug' => 1, 'Admin' => 1, + 'K4' => 1, ); return $oFCKeditor->CreateHtml(); @@ -487,6 +488,22 @@ return $timestamp; } + function CheckPermCache($params) + { + if ($this->Conn->GetOne('SELECT Data FROM '.TABLE_PREFIX.'Cache WHERE VarName = \'ForcePermCacheUpdate\'')) { + $this->Application->Redirect($params['cache_update_t'], array('continue' => 1)); + } + } + /** + * Checks if current protocol is SSL + * + * @param Array $params + * @return int + */ + function IsSSL($params) + { + return (PROTOCOL == 'https://')? 1 : 0; + } } ?> \ No newline at end of file