Plugin Directory

Changeset 167509


Ignore:
Timestamp:
10/27/2009 06:51:29 AM (16 years ago)
Author:
Gnuget
Message:

tagging version 1.2.1

Location:
magic-fields/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • magic-fields/trunk/RCCWP_CustomField.php

    r167018 r167509  
    525525        $customFieldvalues = $wpdb->get_row(
    526526            "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_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 wp_mf_module_groups mg, wp_postmeta pm 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)
    529529            ",ARRAY_A);
    530                                        
     530                       
    531531        if (empty($customFieldvalues))
    532532            return false;
  • magic-fields/trunk/readme.txt

    r167028 r167509  
    55Requires at least: 2.7
    66Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=edgar%40programador%2ecom&lc=GB&item_name=Donation%20Magic%20Fields&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHostedGuest
    7 Stable tag: 1.2
     7Stable tag: 1.2.1
    88Description: Magic Fields  is a feature rich WordPress CMS plugin.
    99
     
    2727
    2828== Changelog ==
     29
     30= 1.2.1 =
     31
     32* Fix in the GetDataField function, this function is used by all front-end functions
    2933
    3034= 1.2 =
Note: See TracChangeset for help on using the changeset viewer.