Changeset 619049
- Timestamp:
- 10/30/2012 03:04:23 PM (13 years ago)
- Location:
- ultimate-cms/trunk
- Files:
-
- 3 edited
-
index.php (modified) (3 diffs)
-
modules/post-type/class-xydac-post-type-fields.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ultimate-cms/trunk/index.php
r618897 r619049 6 6 Author: XYDAC 7 7 Author URI: http://xydac.com/ 8 Version: 1.0. 28 Version: 1.0.3 9 9 License: GPL2*/ 10 10 … … 138 138 } 139 139 } 140 closedir( $modules_dir );140 @closedir( $modules_dir ); 141 141 @closedir($modules_dir); 142 142 @closedir($modules_dir); … … 302 302 do_action('xydac_cms_activate'); 303 303 } 304 function xydac_taxonomy_fix(){304 public static function xydac_taxonomy_fix(){ 305 305 global $wpdb; 306 306 $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 20 20 add_filter('xydac_core_field_name',array($this,'field_name')); 21 21 add_filter('xydac_core_headfootcolumn',array($this,'headfootcolumn')); 22 add_filter('xydac_core_editlink',array($this,'xydac_core_editlink_func')); 22 23 //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); 23 24 $args = array('field_val' => $name); … … 28 29 { 29 30 return "field_name"; 31 } 32 function xydac_core_editlink_func($str) 33 { 34 return $str.'&manage_post_type='.$this->name; 30 35 } 31 36 function headfootcolumn() -
ultimate-cms/trunk/readme.txt
r618897 r619049 62 62 == Changelog == 63 63 64 = 1.0.3 = 65 * Fixed some warnings on accessing Ultimate CMS 66 * Fixed Post type manager field options 67 64 68 = 1.0.2 = 65 69 * Fixed issue occuring on windows due to directory. … … 110 114 == Upgrade Notice == 111 115 116 = 1.0.3 = 117 Fixed some warnings on accessing Ultimate CMS,Fixed Post type manager field options 118 112 119 = 1.0.2 = 113 120 Fixed issue occuring on windows due to directory.Fixed issue due to dao.
Note: See TracChangeset
for help on using the changeset viewer.