Plugin Directory

Changeset 719726


Ignore:
Timestamp:
05/29/2013 04:56:57 AM (13 years ago)
Author:
deepak.seth
Message:

1.0.8

  • fixed bug with loss of content html (text area fields) and fixed working of link fieldtype
Location:
ultimate-cms/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • ultimate-cms/trunk/class-xydac-ultimate-cms-core.php

    r719060 r719726  
    455455                                        <?php } ?>
    456456                                    <?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>
    458458                                    <?php } ?>
    459459                                <p><?php echo $desc ?></p>
  • ultimate-cms/trunk/fieldTypes/class-link.php

    r719060 r719726  
    1919        $val_title = false;
    2020        $val_link= false;
    21         if(is_string($val) && $val=='false')
     21        if(empty($val) || (is_string($val) && $val=='false'))
    2222            $val = substr(uniqid(),0,8);
    2323        else
  • ultimate-cms/trunk/index.php

    r719508 r719726  
    66Author: XYDAC
    77Author URI: http://xydac.com/
    8 Version: 1.0.7
     8Version: 1.0.8
    99License: GPL2*/
    1010
  • ultimate-cms/trunk/readme.txt

    r719568 r719726  
    6868== Changelog ==
    6969
     70= 1.0.8 =
     71* fixed bug with loss of content html (text area fields) and fixed working of link fieldtype
     72
    7073= 1.0.7 =
    7174* fixed bug with Taxonomy addition and deletion
     
    132135
    133136= 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.
     137The API key is available if required, It's free and you can get one from www.xydac.com/account
    135138
    136139
    137140== Upgrade Notice ==
     141
     142= 1.0.8 =
     143* fixed bug with loss of content html (text area fields) and fixed working of link fieldtype
    138144
    139145= 1.0.7 =
Note: See TracChangeset for help on using the changeset viewer.