mirror of
https://github.com/e107inc/e107.git
synced 2025-08-03 05:07:27 +02:00
possibility to use lang string in placeholder
This commit is contained in:
@@ -2626,7 +2626,10 @@ class e_form
|
||||
break;
|
||||
|
||||
case 'placeholder':
|
||||
if($optval) $ret .= " placeholder='{$optval}'";
|
||||
if($optval) {
|
||||
$optval = deftrue($optval, $optval);
|
||||
$ret .= " placeholder='{$optval}'";
|
||||
}
|
||||
break;
|
||||
|
||||
case 'wrap':
|
||||
|
Reference in New Issue
Block a user