Changeset 1915596
- Timestamp:
- 07/26/2018 09:40:58 PM (8 years ago)
- Location:
- pods/trunk
- Files:
-
- 3 edited
-
classes/fields/time.php (modified) (1 diff)
-
init.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pods/trunk/classes/fields/time.php
r1915545 r1915596 166 166 public function is_empty( $value = null ) { 167 167 168 return empty( trim ( $value ) ); 168 $value = trim ( $value ); 169 return empty( $value ); 169 170 } 170 171 -
pods/trunk/init.php
r1915545 r1915596 4 4 Plugin URI: https://pods.io/ 5 5 Description: Pods is a framework for creating, managing, and deploying customized content types and fields 6 Version: 2.7. 76 Version: 2.7.8 7 7 Author: Pods Framework Team 8 8 Author URI: https://pods.io/about/ … … 37 37 } else { 38 38 // Current version 39 define( 'PODS_VERSION', '2.7. 7' );39 define( 'PODS_VERSION', '2.7.8' ); 40 40 41 41 // Version tracking between DB updates themselves -
pods/trunk/readme.txt
r1915545 r1915596 6 6 Requires PHP: 5.3 7 7 Tested up to: 4.9.6 8 Stable tag: 2.7. 78 Stable tag: 2.7.8 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 180 180 181 181 == Changelog == 182 183 = 2.7.8 - July 26th 2018 = 184 185 * Hotfix: Time field generates a fatal error on PHP prior to 5.5, #5079 (@davegaeddert) 182 186 183 187 = 2.7.7 - July 26th 2018 =
Note: See TracChangeset
for help on using the changeset viewer.