Changeset 7136
- Timestamp:
- May 11, 2008, 4:36:06 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
OpenPNE/trunk/public_html/xhtml_style.php
r7130 r7136 8 8 require_once OPENPNE_WEBAPP_DIR . '/init.inc'; 9 9 require_once 'smarty_plugins/function.t_img_url_skin.php'; 10 require_once 'Etag.php'; 10 11 11 12 $custom_css = p_common_c_siteadmin4target_pagename('inc_custom_css'); … … 23 24 9 => $old_colors['bg_10'], // (9)左メニュー枠色 24 25 ); 26 27 $etag_key = md5(OPENPNE_SKIN_THEME . $custom_css . serialize($decoration_config) . serialize($colors)); 28 $etag =& new Etag($etag_key, @filemtime(__FILE__)); 29 if ($etag->etagCheck()) { 30 exit; 31 } 25 32 26 33 function getSkin($name)
Note: See TracChangeset
for help on using the changeset viewer.