mirror of
https://github.com/claudehohl/Stikked.git
synced 2025-04-26 04:51:08 -05:00
parent
64a5a097d1
commit
59c93e8faa
@ -37,6 +37,7 @@ $this->carabiner->css('diff.css');
|
||||
$this->carabiner->display('css');
|
||||
|
||||
$searchparams = ($this->input->get('search') ? '?search=' . $this->input->get('search') : '');
|
||||
$searchparams = str_replace('"', '"', $searchparams);
|
||||
|
||||
?>
|
||||
<script type="text/javascript">
|
||||
|
@ -3,7 +3,7 @@
|
||||
<div class="item">
|
||||
<label for="search"><?php echo lang('paste_search'); ?>
|
||||
</label>
|
||||
<input type="text" name="search" value="<?php echo $this->input->get('search'); ?>" id="search" maxlength="100" tabindex="1" />
|
||||
<input type="text" name="search" value="<?php echo str_replace('"', '"', $this->input->get('search')); ?>" id="search" maxlength="100" tabindex="1" />
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
Loading…
x
Reference in New Issue
Block a user