Plugin Directory

Changeset 619049


Ignore:
Timestamp:
10/30/2012 03:04:23 PM (13 years ago)
Author:
deepak.seth
Message:

1.0.3

  • Fixed some warnings on accessing Ultimate CMS
  • Fixed Post type manager field options
Location:
ultimate-cms/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • ultimate-cms/trunk/index.php

    r618897 r619049  
    66Author: XYDAC
    77Author URI: http://xydac.com/
    8 Version: 1.0.2
     8Version: 1.0.3
    99License: GPL2*/
    1010
     
    138138                        }
    139139                    }
    140                     closedir( $modules_dir );
     140                    @closedir( $modules_dir );
    141141                    @closedir($modules_dir);
    142142                    @closedir($modules_dir);
     
    302302        do_action('xydac_cms_activate');
    303303    }
    304     function xydac_taxonomy_fix(){
     304    public static function xydac_taxonomy_fix(){
    305305    global $wpdb;
    306306        $fields = $wpdb->get_results($wpdb->prepare("SELECT tax_name,field_name,field_label,field_type,field_desc,field_val FROM {$wpdb->prefix}taxonomyfield order by tax_name"));
  • ultimate-cms/trunk/modules/post-type/class-xydac-post-type-fields.php

    r618227 r619049  
    2020        add_filter('xydac_core_field_name',array($this,'field_name'));
    2121        add_filter('xydac_core_headfootcolumn',array($this,'headfootcolumn'));
     22        add_filter('xydac_core_editlink',array($this,'xydac_core_editlink_func'));
    2223        //parent::__construct(xydac()->modules->post_type->get_module_name().__("_field",XYDAC_CMS_NAME),xydac()->modules->post_type->get_module_label().__(" Field",XYDAC_CMS_NAME),xydac()->modules->post_type->get_base_path()."&manage_".xydac()->modules->post_type->get_module_name()."=".$name,xydac()->modules->post_type->get_registered_option('field')."_".$name,$form_variables);
    2324        $args = array('field_val' => $name);
     
    2829    {
    2930        return "field_name";
     31    }
     32    function xydac_core_editlink_func($str)
     33    {
     34        return $str.'&manage_post_type='.$this->name;
    3035    }
    3136    function headfootcolumn()
  • ultimate-cms/trunk/readme.txt

    r618897 r619049  
    6262== Changelog ==
    6363
     64= 1.0.3 =
     65* Fixed some warnings on accessing Ultimate CMS
     66* Fixed Post type manager field options
     67
    6468= 1.0.2 =
    6569* Fixed issue occuring on windows due to directory.
     
    110114== Upgrade Notice ==
    111115
     116= 1.0.3 =
     117Fixed some warnings on accessing Ultimate CMS,Fixed Post type manager field options
     118
    112119= 1.0.2 =
    113120Fixed issue occuring on windows due to directory.Fixed issue due to dao.
Note: See TracChangeset for help on using the changeset viewer.