mirror of
https://github.com/nextcloud/server.git
synced 2026-05-26 03:04:35 -04:00
Fixed placeholder after page reload
The placeholder somehow had too many characters stripping from it...
This commit is contained in:
parent
e372971f2b
commit
f2e17a0b68
1 changed files with 1 additions and 1 deletions
|
|
@ -60,7 +60,7 @@
|
|||
class="optional"
|
||||
data-parameter="<?php p($parameter); ?>"
|
||||
value="<?php p($value); ?>"
|
||||
placeholder="<?php p(substr($placeholder, 5)); ?>" />
|
||||
placeholder="<?php p(substr($placeholder, 1)); ?>" />
|
||||
<?php elseif (strpos($placeholder, '#') !== false): ?>
|
||||
<input type="hidden"
|
||||
data-parameter="<?php p($parameter); ?>"
|
||||
|
|
|
|||
Loading…
Reference in a new issue