Changeset 501268
- Timestamp:
- 02/06/2012 08:45:24 PM (14 years ago)
- Location:
- diy/trunk
- Files:
-
- 2 edited
-
diy.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
diy/trunk/diy.php
r500696 r501268 1372 1372 1373 1373 // Set the current value of the field 1374 if (is _array($group_values)) {1374 if (isset($group_values[$counter][$field_name])) { 1375 1375 $field['value'] = $group_values[$counter][$field_name]; 1376 1376 } else { … … 2026 2026 // retrieve the option 2027 2027 $result = get_post_meta($post_id,$group,true); 2028 2028 if ($result == "") {return "";} 2029 2029 // if the value has been saved/set 2030 if ( (bool) $result[$instance][$field]) {2030 if (isset($result[$instance][$field])) { 2031 2031 return $result[$instance][$field]; 2032 2032 } else { -
diy/trunk/readme.txt
r500698 r501268 3 3 Tags: framework,plugin,custom post types,jquery 4 4 Requires at least: 3.2.1 5 Version: 0.0. 25 Version: 0.0.3 6 6 Tested up to: 3.2.1 7 Stable Tag: 0.0. 27 Stable Tag: 0.0.3 8 8 9 9 Define an extensible framework for building other plugins. … … 36 36 == Changelog == 37 37 38 = 0.0.3 = 39 * More fixes 40 38 41 = 0.0.2 = 39 42 * General Cleanup
Note: See TracChangeset
for help on using the changeset viewer.