Gantry 4 Framework - Version 4.0.1

Version Description

  • Next Gantry Framework Major Release. Please always do a full backup (files + database) of your site before upgrading!
  • Fixed incompatibility with PHP 5.2
Download this release

Release Info

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

Code changes from version 4.0.0 to 4.0.1

CHANGELOG.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Gantry For Wordpress
4
  *
5
- * @version $Id: CHANGELOG.php 59402 2013-03-19 09:38:21Z jakub $
6
  * @author RocketTheme http://www.rockettheme.com
7
  * @copyright Copyright (C) 2007 - 2013 RocketTheme, LLC
8
  * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
@@ -27,14 +27,17 @@ Legend:
27
  - -> Removed
28
  ! -> Note
29
 
30
- ------- 4.0 Release [] ------
 
 
 
31
  ! Next Gantry Framework Major Release. Please always do a full backup of your site before upgrading!
32
  + LESS support
33
  + Responsive layouts are fully supported
34
  + Brand new Admin UI
35
  + Caching improvements
36
  + Filtering in the Assignments tab
37
- + Ability to chose a chrome per widget
38
  + Support for the new Dropdown menu
39
  + New Search Highlight gizmo to allow to highlight search query without losing page content formatting
40
  + Added back the gantryjson.class.php file for backwards compatibility with Crystalline
2
  /**
3
  * Gantry For Wordpress
4
  *
5
+ * @version $Id: CHANGELOG.php 59418 2013-03-20 20:36:24Z jakub $
6
  * @author RocketTheme http://www.rockettheme.com
7
  * @copyright Copyright (C) 2007 - 2013 RocketTheme, LLC
8
  * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
27
  - -> Removed
28
  ! -> Note
29
 
30
+ ------- 4.0.1 Release [] ------
31
+ # Fixed incompatibility with PHP 5.2
32
+
33
+ ------- 4.0.0 Release [] ------
34
  ! Next Gantry Framework Major Release. Please always do a full backup of your site before upgrading!
35
  + LESS support
36
  + Responsive layouts are fully supported
37
  + Brand new Admin UI
38
  + Caching improvements
39
  + Filtering in the Assignments tab
40
+ + Ability to choose a chrome per widget
41
  + Support for the new Dropdown menu
42
  + New Search Highlight gizmo to allow to highlight search query without losing page content formatting
43
  + Added back the gantryjson.class.php file for backwards compatibility with Crystalline
admin/forms/fields/imagepicker.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  /**
3
- * @version 4.0.0 March 19, 2013
4
  * @author RocketTheme http://www.rockettheme.com
5
  * @copyright Copyright (C) 2007 - 2013 RocketTheme, LLC
6
  * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
1
  <?php
2
  /**
3
+ * @version 4.0.1 March 20, 2013
4
  * @author RocketTheme http://www.rockettheme.com
5
  * @copyright Copyright (C) 2007 - 2013 RocketTheme, LLC
6
  * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
admin/forms/fields/updater.php CHANGED
@@ -27,7 +27,7 @@ class GantryFormFieldUpdater extends GantryFormField
27
 
28
  $currentVersion = GANTRY_VERSION;
29
 
30
- if ($currentVersion == "\4.0.0") $currentVersion = "[DEV]";
31
 
32
  // curl check
33
  if (!function_exists('curl_version')) {
27
 
28
  $currentVersion = GANTRY_VERSION;
29
 
30
+ if ($currentVersion == "\4.0.1") $currentVersion = "[DEV]";
31
 
32
  // curl check
33
  if (!function_exists('curl_version')) {
admin/widgets/colorchooser/css/mooRainbow-2.0.css CHANGED
@@ -1,5 +1,5 @@
1
  /**
2
- * @version 4.0.0 March 19, 2013
3
  * @author RocketTheme http://www.rockettheme.com
4
  * @copyright Copyright (C) 2007 - 2013 RocketTheme, LLC
5
  * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
1
  /**
2
+ * @version 4.0.1 March 20, 2013
3
  * @author RocketTheme http://www.rockettheme.com
4
  * @copyright Copyright (C) 2007 - 2013 RocketTheme, LLC
5
  * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
classes/Gantry/Uri/Builder.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  /**
3
- * @version $Id: Builder.php 58836 2013-01-15 01:40:58Z btowles $
4
  * @author RocketTheme http://www.rockettheme.com
5
  * @copyright Copyright (C) 2007 - 2013 RocketTheme, LLC
6
  * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
@@ -237,56 +237,51 @@ class Gantry_Uri_Builder
237
 
238
  if ($components & Gantry_Uri_Components::SCHEME) {
239
  $cmp = $uri->getScheme();
240
-
241
- if (empty($cmp)) goto AUTHORITY_START;
242
-
243
- $result .= "{$cmp}:";
244
  }
245
-
246
- AUTHORITY_START:
247
  if ($components & Gantry_Uri_Components::AUTHORITY_START)
248
  {
249
  $result .= "//";
250
  }
251
 
252
- USER_INFO:
253
  if ($components & Gantry_Uri_Components::USERINFO) {
254
  $cmp = $uri->getUserInfo();
 
 
 
 
 
 
 
 
 
 
255
 
256
- if (empty($cmp)) goto HOST;
257
-
258
- if ($esc && (strpos($cmp, ':') !== false)) {
259
- $parts = explode(':', $cmp, 2);
260
-
261
- $result .= rawurlencode($parts[0]) . ':' . rawurlencode($parts[1]);
262
- } else if ($esc) {
263
- $result .= rawurlencode($cmp);
264
- } else {
265
- $result .= $cmp;
266
  }
267
-
268
- $result .= '@';
269
  }
270
 
271
- HOST:
272
  if ($components & Gantry_Uri_Components::HOST) {
273
  $cmp = $uri->getHost();
274
 
275
- if (empty($cmp)) goto PORT;
276
-
277
- $result .= $cmp;
278
  }
279
 
280
- PORT:
281
  if (($components & Gantry_Uri_Components::STRONG_PORT) || ($components & Gantry_Uri_Components::PORT)) {
282
  $cmp = $uri->getPort();
283
 
284
- if (($cmp === -1) || (($components & Gantry_Uri_Components::PORT) && $uri->isDefaultPort())) goto RESULT;
285
-
286
- $result .= ":{$cmp}";
287
  }
288
-
289
- RESULT:
290
  return $result;
291
  }
292
 
@@ -318,31 +313,33 @@ class Gantry_Uri_Builder
318
  if ($components & Gantry_Uri_Components::QUERY) {
319
  $cmp = $uri->getQuery();
320
 
321
- if (empty($cmp)) goto FRAGMENT;
322
 
323
- if ($esc) {
324
- parse_str($cmp, $cmp);
325
 
326
- $result .= '?' . str_replace('+', '%20', http_build_query($cmp, null, '&'));
327
- } else {
328
- $result .= "?{$cmp}";
 
329
  }
330
  }
331
 
332
- FRAGMENT:
333
  if ($components & Gantry_Uri_Components::FRAGMENT) {
334
  $cmp = $uri->getFragment();
335
 
336
- if (empty($cmp)) goto RESULT;
337
 
338
- if ($esc) {
339
- $result .= '#' . rawurlencode($cmp);
340
- } else {
341
- $result .= "#{$cmp}";
 
342
  }
343
  }
344
 
345
- RESULT:
346
  return $result;
347
  }
348
  }
1
  <?php
2
  /**
3
+ * @version $Id: Builder.php 59417 2013-03-20 16:50:35Z btowles $
4
  * @author RocketTheme http://www.rockettheme.com
5
  * @copyright Copyright (C) 2007 - 2013 RocketTheme, LLC
6
  * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
237
 
238
  if ($components & Gantry_Uri_Components::SCHEME) {
239
  $cmp = $uri->getScheme();
240
+ if (!empty($cmp)){
241
+ $result .= "{$cmp}:";
242
+ }
 
243
  }
244
+ // Authority Start
 
245
  if ($components & Gantry_Uri_Components::AUTHORITY_START)
246
  {
247
  $result .= "//";
248
  }
249
 
250
+ //User info
251
  if ($components & Gantry_Uri_Components::USERINFO) {
252
  $cmp = $uri->getUserInfo();
253
+ if (!empty($cmp)){
254
+ if ($esc && (strpos($cmp, ':') !== false)) {
255
+ $parts = explode(':', $cmp, 2);
256
+
257
+ $result .= rawurlencode($parts[0]) . ':' . rawurlencode($parts[1]);
258
+ } else if ($esc) {
259
+ $result .= rawurlencode($cmp);
260
+ } else {
261
+ $result .= $cmp;
262
+ }
263
 
264
+ $result .= '@';
 
 
 
 
 
 
 
 
 
265
  }
 
 
266
  }
267
 
268
+ //HOST:
269
  if ($components & Gantry_Uri_Components::HOST) {
270
  $cmp = $uri->getHost();
271
 
272
+ if (!empty($cmp)){
273
+ $result .= $cmp;
274
+ }
275
  }
276
 
277
+ //PORT:
278
  if (($components & Gantry_Uri_Components::STRONG_PORT) || ($components & Gantry_Uri_Components::PORT)) {
279
  $cmp = $uri->getPort();
280
 
281
+ if (!(($cmp === -1) || (($components & Gantry_Uri_Components::PORT) && $uri->isDefaultPort()))){
282
+ $result .= ":{$cmp}";
283
+ }
284
  }
 
 
285
  return $result;
286
  }
287
 
313
  if ($components & Gantry_Uri_Components::QUERY) {
314
  $cmp = $uri->getQuery();
315
 
316
+ if (!empty($cmp)){
317
 
318
+ if ($esc) {
319
+ parse_str($cmp, $cmp);
320
 
321
+ $result .= '?' . str_replace('+', '%20', http_build_query($cmp, null, '&'));
322
+ } else {
323
+ $result .= "?{$cmp}";
324
+ }
325
  }
326
  }
327
 
328
+ //FRAGMENT:
329
  if ($components & Gantry_Uri_Components::FRAGMENT) {
330
  $cmp = $uri->getFragment();
331
 
332
+ if (!empty($cmp)){
333
 
334
+ if ($esc) {
335
+ $result .= '#' . rawurlencode($cmp);
336
+ } else {
337
+ $result .= "#{$cmp}";
338
+ }
339
  }
340
  }
341
 
342
+ // RESULT:
343
  return $result;
344
  }
345
  }
classes/Gantry/Uri/Util.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  /**
3
- * @version $Id: Util.php 59350 2013-03-13 17:14:16Z btowles $
4
  * @author RocketTheme http://www.rockettheme.com
5
  * @copyright Copyright (C) 2007 - 2013 RocketTheme, LLC
6
  * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
@@ -189,3 +189,17 @@ class Gantry_Uri_Util
189
  }
190
 
191
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  <?php
2
  /**
3
+ * @version $Id: Util.php 59417 2013-03-20 16:50:35Z btowles $
4
  * @author RocketTheme http://www.rockettheme.com
5
  * @copyright Copyright (C) 2007 - 2013 RocketTheme, LLC
6
  * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
189
  }
190
 
191
  }
192
+
193
+ if(false === function_exists('lcfirst'))
194
+ {
195
+ /**
196
+ * Make a string's first character lowercase
197
+ *
198
+ * @param string $str
199
+ * @return string the resulting string.
200
+ */
201
+ function lcfirst( $str ) {
202
+ $str[0] = strtolower($str[0]);
203
+ return (string)$str;
204
+ }
205
+ }
core/gantry.class.php CHANGED
@@ -1035,7 +1035,7 @@ class Gantry
1035
  $path = '/' . preg_replace('#^' . quotemeta($this->baseUrl) . '#', "", $path);
1036
  }
1037
  $filename = strtolower(basename($path, '.css')) . rand(0, 1000);
1038
- wp_enqueue_style($filename, $path, array(), '4.0.0');
1039
  $deps[] = $path;
1040
  }
1041
  }
@@ -1048,11 +1048,11 @@ class Gantry
1048
  if ($this->baseUrl != "/") {
1049
  $path = '/' . preg_replace('#^' . quotemeta($this->baseUrl) . '#', "", $path);
1050
  }
1051
- wp_enqueue_script($path, $path, $deps, '4.0.0');
1052
  $deps[] = $path;
1053
  }
1054
  foreach ($this->_full_scripts as $strSrc) {
1055
- wp_enqueue_script($strSrc, $strSrc, $deps, '4.0.0');
1056
  $deps[] = $strSrc;
1057
  }
1058
 
@@ -1607,7 +1607,7 @@ class Gantry
1607
  if (!defined('GANTRY_FINALIZED')) {
1608
  $this->_styles[$priority][] = $link;
1609
  } else {
1610
- wp_enqueue_style($link->getUrl(), $link->getUrl(), array(), '4.0.0');
1611
  }
1612
  }
1613
  }
@@ -1711,7 +1711,7 @@ class Gantry
1711
  if (!defined('GANTRY_FINALIZED')) {
1712
  $this->_scripts[$full_path] = $check_url_path . $query_string;
1713
  } else {
1714
- wp_enqueue_script($check_url_path, $check_url_path, array(), '4.0.0');
1715
  }
1716
  break;
1717
  }
@@ -1745,7 +1745,7 @@ class Gantry
1745
  if (!defined('GANTRY_FINALIZED')) {
1746
  $this->_scripts[$check_path] = $check_url_path . $query_string;
1747
  } else {
1748
- wp_enqueue_script($check_url_path, $check_url_path, array(), '4.0.0');
1749
  }
1750
  break(2);
1751
  }
1035
  $path = '/' . preg_replace('#^' . quotemeta($this->baseUrl) . '#', "", $path);
1036
  }
1037
  $filename = strtolower(basename($path, '.css')) . rand(0, 1000);
1038
+ wp_enqueue_style($filename, $path, array(), '4.0.1');
1039
  $deps[] = $path;
1040
  }
1041
  }
1048
  if ($this->baseUrl != "/") {
1049
  $path = '/' . preg_replace('#^' . quotemeta($this->baseUrl) . '#', "", $path);
1050
  }
1051
+ wp_enqueue_script($path, $path, $deps, '4.0.1');
1052
  $deps[] = $path;
1053
  }
1054
  foreach ($this->_full_scripts as $strSrc) {
1055
+ wp_enqueue_script($strSrc, $strSrc, $deps, '4.0.1');
1056
  $deps[] = $strSrc;
1057
  }
1058
 
1607
  if (!defined('GANTRY_FINALIZED')) {
1608
  $this->_styles[$priority][] = $link;
1609
  } else {
1610
+ wp_enqueue_style($link->getUrl(), $link->getUrl(), array(), '4.0.1');
1611
  }
1612
  }
1613
  }
1711
  if (!defined('GANTRY_FINALIZED')) {
1712
  $this->_scripts[$full_path] = $check_url_path . $query_string;
1713
  } else {
1714
+ wp_enqueue_script($check_url_path, $check_url_path, array(), '4.0.1');
1715
  }
1716
  break;
1717
  }
1745
  if (!defined('GANTRY_FINALIZED')) {
1746
  $this->_scripts[$check_path] = $check_url_path . $query_string;
1747
  } else {
1748
+ wp_enqueue_script($check_url_path, $check_url_path, array(), '4.0.1');
1749
  }
1750
  break(2);
1751
  }
core/utilities/gantrycache.class.php CHANGED
@@ -26,7 +26,7 @@ class GantryCache
26
  /**
27
  *
28
  */
29
- const ADMIN_GROUP_NAME = 'GantryAdmin-4.0.0';
30
 
31
  const ADMIN_LIFETIME = 86400;
32
 
@@ -122,7 +122,7 @@ class GantryCache
122
  $this->cache->addDriver('frontend', new WpTransientCacheDriver($this->group, $this->lifetime));
123
  } elseif (is_admin()) {
124
  // TODO get lifetime for backend cache
125
- $this->group = self::ADMIN_GROUP_NAME . '-4.0.0';
126
  $this->cache->addDriver('admin', new WpTransientCacheDriver($this->group, self::ADMIN_LIFETIME));
127
  }
128
  }
26
  /**
27
  *
28
  */
29
+ const ADMIN_GROUP_NAME = 'GantryAdmin-4.0.1';
30
 
31
  const ADMIN_LIFETIME = 86400;
32
 
122
  $this->cache->addDriver('frontend', new WpTransientCacheDriver($this->group, $this->lifetime));
123
  } elseif (is_admin()) {
124
  // TODO get lifetime for backend cache
125
+ $this->group = self::ADMIN_GROUP_NAME . '-4.0.1';
126
  $this->cache->addDriver('admin', new WpTransientCacheDriver($this->group, self::ADMIN_LIFETIME));
127
  }
128
  }
functions.php CHANGED
@@ -168,7 +168,7 @@ function gantry_construct()
168
  /**
169
  * @name GANTRY_VERSION
170
  */
171
- define('GANTRY_VERSION', '4.0.0');
172
 
173
 
174
  if (!defined('DS')) {
168
  /**
169
  * @name GANTRY_VERSION
170
  */
171
+ define('GANTRY_VERSION', '4.0.1');
172
 
173
 
174
  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: 4.0.0
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: 4.0.1
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
@@ -2,9 +2,9 @@
2
  Contributors: gantry
3
  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.1
7
- Stable tag: 4.0.0
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
 
@@ -12,10 +12,13 @@ Gantry is a comprehensive set of building blocks to enable the rapid development
12
 
13
  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 theme.
14
 
 
 
15
  Gantry is packed full of features to empower the development of designs into fully functional layouts with the absolute minimum of effort and fuss.
16
 
17
  * True "Drag and Drop" page builder
18
  * Support for Responsive Layouts
 
19
  * 960 Grid System
20
  * Stunning Administrator interface
21
  * XML driven and with overrides for unprecedented levels of customization
@@ -63,7 +66,7 @@ Please note that Gantry Framework plugin doesn't come up with the default theme.
63
 
64
  We try to ensure that any Gantry theme and the Gantry Plugin specifically will work with any modern and secure server environment. The recommended minimum requirements are :
65
 
66
- * WordPress 3.0 or higher
67
  * PHP 5.2+
68
  * MySQL 3.23 (5+ recommended)
69
  * Apache 1.3 (2.2+ recommended)
@@ -81,6 +84,10 @@ Once you downloaded and installed Gantry Framework plugin, please download also
81
 
82
  == Changelog ==
83
 
 
 
 
 
84
  = 4.0.0 =
85
  * Next Gantry Framework Major Release. Please always do a full backup (files + database) of your site before upgrading!
86
  * LESS support
@@ -296,6 +303,9 @@ Once you downloaded and installed Gantry Framework plugin, please download also
296
 
297
  == Upgrade Notice ==
298
 
 
 
 
299
  = 4.0.0 =
300
  Please remember to create a full site backup (files + database) before performing update.
301
 
2
  Contributors: gantry
3
  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.2
6
  Tested up to: 3.5.1
7
+ Stable tag: 4.0.1
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
 
12
 
13
  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 theme.
14
 
15
+ * Please visit http://gantry-framework.org to download a FREE WordPress Gantry default theme which can be used as a base for your own themes!
16
+
17
  Gantry is packed full of features to empower the development of designs into fully functional layouts with the absolute minimum of effort and fuss.
18
 
19
  * True "Drag and Drop" page builder
20
  * Support for Responsive Layouts
21
+ * Syntax highlight support via Google Code Prettify
22
  * 960 Grid System
23
  * Stunning Administrator interface
24
  * XML driven and with overrides for unprecedented levels of customization
66
 
67
  We try to ensure that any Gantry theme and the Gantry Plugin specifically will work with any modern and secure server environment. The recommended minimum requirements are :
68
 
69
+ * WordPress 3.2 or higher
70
  * PHP 5.2+
71
  * MySQL 3.23 (5+ recommended)
72
  * Apache 1.3 (2.2+ recommended)
84
 
85
  == Changelog ==
86
 
87
+ = 4.0.1 =
88
+ * Next Gantry Framework Major Release. Please always do a full backup (files + database) of your site before upgrading!
89
+ * Fixed incompatibility with PHP 5.2
90
+
91
  = 4.0.0 =
92
  * Next Gantry Framework Major Release. Please always do a full backup (files + database) of your site before upgrading!
93
  * LESS support
303
 
304
  == Upgrade Notice ==
305
 
306
+ = 4.0.1 =
307
+ Please remember to create a full site backup (files + database) before performing update.
308
+
309
  = 4.0.0 =
310
  Please remember to create a full site backup (files + database) before performing update.
311
 
widgets/breadcrumbs.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  /**
3
- * @version 4.0.0 March 19, 2013
4
  * @author RocketTheme http://www.rockettheme.com
5
  * @copyright Copyright (C) 2007 - 2013 RocketTheme, LLC
6
  * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
1
  <?php
2
  /**
3
+ * @version 4.0.1 March 20, 2013
4
  * @author RocketTheme http://www.rockettheme.com
5
  * @copyright Copyright (C) 2007 - 2013 RocketTheme, LLC
6
  * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
widgets/loginbutton.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  /**
3
- * @version 4.0.0 March 19, 2013
4
  * @author RocketTheme http://www.rockettheme.com
5
  * @copyright Copyright (C) 2007 - 2013 RocketTheme, LLC
6
  * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
1
  <?php
2
  /**
3
+ * @version 4.0.1 March 20, 2013
4
  * @author RocketTheme http://www.rockettheme.com
5
  * @copyright Copyright (C) 2007 - 2013 RocketTheme, LLC
6
  * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
widgets/loginform.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  /**
3
- * @version 4.0.0 March 19, 2013
4
  * @author RocketTheme http://www.rockettheme.com
5
  * @copyright Copyright (C) 2007 - 2013 RocketTheme, LLC
6
  * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
1
  <?php
2
  /**
3
+ * @version 4.0.1 March 20, 2013
4
  * @author RocketTheme http://www.rockettheme.com
5
  * @copyright Copyright (C) 2007 - 2013 RocketTheme, LLC
6
  * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only