Changeset 719726
- Timestamp:
- 05/29/2013 04:56:57 AM (13 years ago)
- Location:
- ultimate-cms/trunk
- Files:
-
- 4 edited
-
class-xydac-ultimate-cms-core.php (modified) (1 diff)
-
fieldTypes/class-link.php (modified) (1 diff)
-
index.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ultimate-cms/trunk/class-xydac-ultimate-cms-core.php
r719060 r719726 455 455 <?php } ?> 456 456 <?php } elseif($type=='textarea') { ?><label for='<?php echo $this->xydac_core_name.$name ?>' style="font-weight:bold;"><?php echo $arr_label ?></label> 457 <textarea style="height:<?php if(isset($height)) echo $height; else echo "300px"; ?>" name= xydac_form_'<?php echo $this->xydac_core_name.$name; ?>' class='name' id='<?php echo $this->xydac_core_name.$name; ?>'><?php if($this->xydac_core_editmode) {echo $this->get_array_val($this->xydac_editdata,$name); } ?></textarea>457 <textarea style="height:<?php if(isset($height)) echo $height; else echo "300px"; ?>" name='xydac_form_<?php echo $this->xydac_core_name.$name; ?>' class='name' id='<?php echo $this->xydac_core_name.$name; ?>'><?php if($this->xydac_core_editmode) {echo $this->get_array_val($this->xydac_editdata,$name); } ?></textarea> 458 458 <?php } ?> 459 459 <p><?php echo $desc ?></p> -
ultimate-cms/trunk/fieldTypes/class-link.php
r719060 r719726 19 19 $val_title = false; 20 20 $val_link= false; 21 if( is_string($val) && $val=='false')21 if(empty($val) || (is_string($val) && $val=='false')) 22 22 $val = substr(uniqid(),0,8); 23 23 else -
ultimate-cms/trunk/index.php
r719508 r719726 6 6 Author: XYDAC 7 7 Author URI: http://xydac.com/ 8 Version: 1.0. 78 Version: 1.0.8 9 9 License: GPL2*/ 10 10 -
ultimate-cms/trunk/readme.txt
r719568 r719726 68 68 == Changelog == 69 69 70 = 1.0.8 = 71 * fixed bug with loss of content html (text area fields) and fixed working of link fieldtype 72 70 73 = 1.0.7 = 71 74 * fixed bug with Taxonomy addition and deletion … … 132 135 133 136 = Do i need the API key to run this plugin = 134 No currently the API functionality is under development. the plugin will be updated to provide more functionality. Till then you can use the plugin without API key. 137 The API key is available if required, It's free and you can get one from www.xydac.com/account 135 138 136 139 137 140 == Upgrade Notice == 141 142 = 1.0.8 = 143 * fixed bug with loss of content html (text area fields) and fixed working of link fieldtype 138 144 139 145 = 1.0.7 =
Note: See TracChangeset
for help on using the changeset viewer.