Changeset 167509
- Timestamp:
- 10/27/2009 06:51:29 AM (16 years ago)
- Location:
- magic-fields/trunk
- Files:
-
- 2 edited
-
RCCWP_CustomField.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
magic-fields/trunk/RCCWP_CustomField.php
r167018 r167509 525 525 $customFieldvalues = $wpdb->get_row( 526 526 "SELECT pm.meta_id,pm.meta_value, cf.id, cf.type,cf.CSS,fp.properties,cf.description 527 FROM wp_mf_post_meta pm_mf, wp_postmeta pm, wp_mf_panel_custom_field cf LEFT JOIN wp_mf_custom_field_propertiesfp ON fp.custom_field_id = cf.id528 WHERE cf.name = '$customFieldName' AND cf.name = pm_mf.field_name AND group_count = $groupIndex AND field_count = $fieldIndex AND pm_mf.post_id= $postId AND pm_mf.id = pm.meta_id AND cf.group_id in ( SELECT mg.id FROM wp_mf_module_groups mg, wp_postmetapm WHERE mg.panel_id = pm.meta_value AND pm.meta_key = '_mf_write_panel_id' AND pm.post_id = $postId)527 FROM ".MF_TABLE_POST_META." pm_mf, ".$wpdb->postmeta." pm, ".MF_TABLE_GROUP_FIELDS." cf LEFT JOIN ".MF_TABLE_CUSTOM_FIELD_PROPERTIES." fp ON fp.custom_field_id = cf.id 528 WHERE cf.name = '$customFieldName' AND cf.name = pm_mf.field_name AND group_count = $groupIndex AND field_count = $fieldIndex AND pm_mf.post_id= $postId AND pm_mf.id = pm.meta_id AND cf.group_id in ( SELECT mg.id FROM ".MF_TABLE_PANEL_GROUPS." mg, ".$wpdb->postmeta." pm WHERE mg.panel_id = pm.meta_value AND pm.meta_key = '_mf_write_panel_id' AND pm.post_id = $postId) 529 529 ",ARRAY_A); 530 530 531 531 if (empty($customFieldvalues)) 532 532 return false; -
magic-fields/trunk/readme.txt
r167028 r167509 5 5 Requires at least: 2.7 6 6 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=edgar%40programador%2ecom&lc=GB&item_name=Donation%20Magic%20Fields¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHostedGuest 7 Stable tag: 1.2 7 Stable tag: 1.2.1 8 8 Description: Magic Fields is a feature rich WordPress CMS plugin. 9 9 … … 27 27 28 28 == Changelog == 29 30 = 1.2.1 = 31 32 * Fix in the GetDataField function, this function is used by all front-end functions 29 33 30 34 = 1.2 =
Note: See TracChangeset
for help on using the changeset viewer.