mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 02:31:40 +09:00
Issue 1507 fixed a bug of missing a default value on text type of extravar
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@10328 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
0c5d6f13d4
commit
06d3d5c88b
1 changed files with 1 additions and 1 deletions
|
|
@ -298,7 +298,7 @@
|
|||
break;
|
||||
// General text
|
||||
default :
|
||||
$buff .=' <input type="text" name="'.$column_name.'" value="'.$value.'" class="text" />';
|
||||
$buff .=' <input type="text" name="'.$column_name.'" value="'.($value ? $value : $default).'" class="text" />';
|
||||
break;
|
||||
}
|
||||
if($this->desc) $buff .= '<p>'.$this->desc.'</p>';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue