Gantry 4 Framework - Version 1.31

Version Description

  • Fix for the caching issue which caused the "Fatal error: Call to a member function getGridcss()"
  • Please clean your site/browser cache after updating Gantry to 1.31
Download this release

Release Info

Developer gantry
Plugin Icon 128x128 Gantry 4 Framework
Version 1.31
Comparing to
See all releases

Code changes from version 1.30 to 1.31

CHANGELOG.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Gantry For Wordpress
4
  *
5
- * @version $Id: CHANGELOG.php 58645 2012-12-18 01:18:19Z jakub $
6
  * @author RocketTheme http://www.rockettheme.com
7
  * @copyright Copyright (C) 2007 - 2012 RocketTheme, LLC
8
  * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
@@ -27,6 +27,10 @@ Legend:
27
  - -> Removed
28
  ! -> Note
29
 
 
 
 
 
30
  ------- 1.30 Release [] ------
31
  # Fix for the "Fatal error: Call to a member function isEnabled()" in some rare cases
32
  # Fixed Notices appearing after enabling Debug mode
2
  /**
3
  * Gantry For Wordpress
4
  *
5
+ * @version $Id: CHANGELOG.php 58653 2012-12-18 21:25:40Z jakub $
6
  * @author RocketTheme http://www.rockettheme.com
7
  * @copyright Copyright (C) 2007 - 2012 RocketTheme, LLC
8
  * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
27
  - -> Removed
28
  ! -> Note
29
 
30
+ ------- 1.31 Release [] ------
31
+ # Fix for the caching issue which caused the "Fatal error: Call to a member function getGridcss()"
32
+ ! Please clean your site/browser cache after updating Gantry to 1.31
33
+
34
  ------- 1.30 Release [] ------
35
  # Fix for the "Fatal error: Call to a member function isEnabled()" in some rare cases
36
  # Fixed Notices appearing after enabling Debug mode
admin/forms/fields/updater.php CHANGED
@@ -26,7 +26,7 @@ class GantryFormFieldUpdater extends GantryFormField
26
 
27
  $currentVersion = GANTRY_VERSION;
28
 
29
- if ($currentVersion == "\1.30") $currentVersion = "[DEV]";
30
 
31
  // curl check
32
  if (!function_exists('curl_version')) {
26
 
27
  $currentVersion = GANTRY_VERSION;
28
 
29
+ if ($currentVersion == "\1.31") $currentVersion = "[DEV]";
30
 
31
  // curl check
32
  if (!function_exists('curl_version')) {
admin/widgets/colorchooser/js/colorchooser.js CHANGED
@@ -1,5 +1,5 @@
1
  /**
2
- * @version 1.30 December 17, 2012
3
  * @author RocketTheme http://www.rockettheme.com
4
  * @copyright Copyright (C) 2007 - 2012 RocketTheme, LLC
5
  * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
1
  /**
2
+ * @version 1.31 December 18, 2012
3
  * @author RocketTheme http://www.rockettheme.com
4
  * @copyright Copyright (C) 2007 - 2012 RocketTheme, LLC
5
  * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
admin/widgets/preset/js/preset.js CHANGED
@@ -1,5 +1,5 @@
1
  /**
2
- * @version 1.30 December 17, 2012
3
  * @author RocketTheme http://www.rockettheme.com
4
  * @copyright Copyright (C) 2007 - 2012 RocketTheme, LLC
5
  * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
1
  /**
2
+ * @version 1.31 December 18, 2012
3
  * @author RocketTheme http://www.rockettheme.com
4
  * @copyright Copyright (C) 2007 - 2012 RocketTheme, LLC
5
  * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
admin/widgets/selectbox/js/selectbox.js CHANGED
@@ -1,5 +1,5 @@
1
  /**
2
- * @version 1.30 December 17, 2012
3
  * @author RocketTheme http://www.rockettheme.com
4
  * @copyright Copyright (C) 2007 - 2012 RocketTheme, LLC
5
  * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
1
  /**
2
+ * @version 1.31 December 18, 2012
3
  * @author RocketTheme http://www.rockettheme.com
4
  * @copyright Copyright (C) 2007 - 2012 RocketTheme, LLC
5
  * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
core/gantry.class.php CHANGED
@@ -839,7 +839,7 @@ class Gantry
839
  $path = '/' . preg_replace('#^' . quotemeta($this->baseUrl) . '#', "", $path);
840
  }
841
  $filename = strtolower(basename($path, '.css')) . rand(0, 1000);
842
- wp_enqueue_style($filename, $path, array(), '1.30');
843
  $deps[] = $path;
844
  }
845
  }
@@ -852,11 +852,11 @@ class Gantry
852
  if ($this->baseUrl != "/") {
853
  $path = '/' . preg_replace('#^' . quotemeta($this->baseUrl) . '#', "", $path);
854
  }
855
- wp_enqueue_script($path, $path, $deps, '1.30');
856
  $deps[] = $path;
857
  }
858
  foreach ($this->_full_scripts as $strSrc) {
859
- wp_enqueue_script($strSrc, $strSrc, $deps, '1.30');
860
  $deps[] = $strSrc;
861
  }
862
 
839
  $path = '/' . preg_replace('#^' . quotemeta($this->baseUrl) . '#', "", $path);
840
  }
841
  $filename = strtolower(basename($path, '.css')) . rand(0, 1000);
842
+ wp_enqueue_style($filename, $path, array(), '1.31');
843
  $deps[] = $path;
844
  }
845
  }
852
  if ($this->baseUrl != "/") {
853
  $path = '/' . preg_replace('#^' . quotemeta($this->baseUrl) . '#', "", $path);
854
  }
855
+ wp_enqueue_script($path, $path, $deps, '1.31');
856
  $deps[] = $path;
857
  }
858
  foreach ($this->_full_scripts as $strSrc) {
859
+ wp_enqueue_script($strSrc, $strSrc, $deps, '1.31');
860
  $deps[] = $strSrc;
861
  }
862
 
core/gantrytemplatedetails.class.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  /**
3
- `` * @version $Id: gantrytemplatedetails.class.php 58626 2012-12-15 22:47:03Z btowles $
4
  * @author RocketTheme http://www.rockettheme.com
5
  * @copyright Copyright (C) 2007 - 2012 RocketTheme, LLC
6
  * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
@@ -72,7 +72,7 @@ class GantryTemplateDetails
72
  */
73
  function __sleep()
74
  {
75
- return array('positions', 'params', 'widget_styles', '_template_settings');
76
  }
77
 
78
  /**
1
  <?php
2
  /**
3
+ * @version $Id: gantrytemplatedetails.class.php 58651 2012-12-18 17:34:30Z btowles $
4
  * @author RocketTheme http://www.rockettheme.com
5
  * @copyright Copyright (C) 2007 - 2012 RocketTheme, LLC
6
  * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
72
  */
73
  function __sleep()
74
  {
75
+ return array('positions', 'params', 'widget_styles', '_template_settings','template_info');
76
  }
77
 
78
  /**
functions.php CHANGED
@@ -147,7 +147,7 @@ function gantry_construct()
147
  /**
148
  * @name GANTRY_VERSION
149
  */
150
- define('GANTRY_VERSION', '1.30');
151
 
152
 
153
  if (!defined('DS')) {
147
  /**
148
  * @name GANTRY_VERSION
149
  */
150
+ define('GANTRY_VERSION', '1.31');
151
 
152
 
153
  if (!defined('DS')) {
gantry.php CHANGED
@@ -10,7 +10,7 @@
10
  Plugin Name: Gantry Template Framework
11
  Plugin URI: http://www.gantry-framework.org/
12
  Description: This is a Framework to support easily modifiable themes that are very extensible.
13
- Version: 1.30
14
  Author: RocketTheme
15
  Author URI: http://www.rockettheme.com/wordpress
16
  License: http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
10
  Plugin Name: Gantry Template Framework
11
  Plugin URI: http://www.gantry-framework.org/
12
  Description: This is a Framework to support easily modifiable themes that are very extensible.
13
+ Version: 1.31
14
  Author: RocketTheme
15
  Author URI: http://www.rockettheme.com/wordpress
16
  License: http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
readme.txt CHANGED
@@ -4,7 +4,7 @@ Author URI: http://gantry-framework.org
4
  Tags: gantry, framework, template, theme, widgets, flexible, extensible, configurable, 960px, grid, columns, powerful
5
  Requires at least: 3.0
6
  Tested up to: 3.5
7
- Stable tag: 1.30
8
 
9
  Gantry is a comprehensive set of building blocks to enable the rapid development and realization of a design into a flexible and powerful web platform
10
 
@@ -80,6 +80,10 @@ Once you downloaded and installed Gantry Framework plugin, please download also
80
 
81
  == Changelog ==
82
 
 
 
 
 
83
  = 1.30 =
84
  * Fix for the "Fatal error: Call to a member function isEnabled()" in some rare cases
85
  * Fixed Notices appearing after enabling Debug mode
4
  Tags: gantry, framework, template, theme, widgets, flexible, extensible, configurable, 960px, grid, columns, powerful
5
  Requires at least: 3.0
6
  Tested up to: 3.5
7
+ Stable tag: 1.31
8
 
9
  Gantry is a comprehensive set of building blocks to enable the rapid development and realization of a design into a flexible and powerful web platform
10
 
80
 
81
  == Changelog ==
82
 
83
+ = 1.31 =
84
+ * Fix for the caching issue which caused the "Fatal error: Call to a member function getGridcss()"
85
+ * Please clean your site/browser cache after updating Gantry to 1.31
86
+
87
  = 1.30 =
88
  * Fix for the "Fatal error: Call to a member function isEnabled()" in some rare cases
89
  * Fixed Notices appearing after enabling Debug mode