mirror of
https://github.com/claudehohl/Stikked.git
synced 2025-05-02 08:21:11 -05:00
Fix another php8 error with 'default' theme
This commit is contained in:
parent
9b84e0c07f
commit
03e9c1a99e
@ -3,7 +3,10 @@
|
||||
<div class="item">
|
||||
<label for="search"><?php echo lang('paste_search'); ?>
|
||||
</label>
|
||||
<input type="text" name="search" value="<?php echo str_replace('"', '"', $this->input->get('search')); ?>" id="search" maxlength="100" tabindex="1" />
|
||||
<input type="text" name="search" value="<?php
|
||||
$search = $this->input->get('search');
|
||||
echo $search ? str_replace('"', '"', $search) : '';
|
||||
?>" id="search" maxlength="100" tabindex="1" />
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
Loading…
x
Reference in New Issue
Block a user