Changeset 609085
- Timestamp:
- 10/07/2012 08:15:03 AM (13 years ago)
- File:
-
- 1 edited
-
edge-suite/trunk/edge-suite.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
edge-suite/trunk/edge-suite.php
r608822 r609085 202 202 function edge_suite_header() { 203 203 global $edge_suite; 204 print "\n" . implode("\n", $edge_suite->scripts) . "\n"; 204 if(isset($edge_suite->scripts) && is_array($edge_suite->scripts)){ 205 print "\n" . implode("\n", $edge_suite->scripts) . "\n"; 206 } 205 207 } 206 208 … … 416 418 } 417 419 add_shortcode('edge_animation', 'edge_suite_shortcode_edge_animation'); 420 421 // Enable widget shortcut support if configured 418 422 if(get_option('edge_suite_widget_shortcode') == 1){ 419 423 add_filter('widget_text', 'do_shortcode');
Note: See TracChangeset
for help on using the changeset viewer.