Changeset 485449
- Timestamp:
- 01/06/2012 02:40:57 AM (14 years ago)
- Location:
- featured-posts-grid/branches/dev
- Files:
-
- 3 edited
-
css/fpg.css.php (modified) (1 diff)
-
fpg-generate-output.php (modified) (2 diffs)
-
js/fpg.js.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
featured-posts-grid/branches/dev/css/fpg.css.php
r476629 r485449 1 1 <?php 2 header('content-type: text/css'); 2 if (empty($generating_static) || !$generating_static) 3 { 4 header('content-type: text/css'); 5 } 3 6 define('WP_USE_THEMES', false); 4 7 require_once((dirname(dirname( dirname( dirname ( dirname ( __FILE__ ) ) ) ))).'/wp-config.php'); -
featured-posts-grid/branches/dev/fpg-generate-output.php
r483690 r485449 188 188 ob_start(); 189 189 190 $generating_static = true; 190 191 include(WP_PLUGIN_DIR.'/featured-posts-grid/js/fpg.js.php'); 191 192 … … 214 215 ob_start(); 215 216 217 $generating_static = true; 216 218 include(WP_PLUGIN_DIR.'/featured-posts-grid/css/fpg.css.php'); 217 219 -
featured-posts-grid/branches/dev/js/fpg.js.php
r477430 r485449 1 1 <?php 2 header('content-type: application/x-javascript'); 2 if (empty($generating_static) || !$generating_static) 3 { 4 header('content-type: application/x-javascript'); 5 } 3 6 define('WP_USE_THEMES', false); 4 7 require_once((dirname(dirname(dirname(dirname(dirname( __FILE__ ) ) )))).'/wp-config.php');
Note: See TracChangeset
for help on using the changeset viewer.