Skip to content

Commit

Permalink
Fix (new) search from deeper list pages
Browse files Browse the repository at this point in the history
( reported in claudehohl#551 )
  • Loading branch information
krayon committed Jan 31, 2022
1 parent 657256e commit b52e96f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion htdocs/themes/bootstrap/views/view/search.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<form class="form-horizontal">
<form class="form-horizontal" action="<?php echo site_url('lists'); ?>">
<div class="control-group searchgroup">
<div class="controls">
<input id="search" name="search" type="text" placeholder="search" class="input-medium" value="<?php echo $this->input->get('search'); ?>" />
Expand Down
2 changes: 1 addition & 1 deletion htdocs/themes/default/views/view/search.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<form action="">
<form action="<?php echo site_url('lists'); ?>">
<div class="item_group searchgroup">
<div class="item">
<label for="search"><?php echo lang('paste_search'); ?>
Expand Down
2 changes: 1 addition & 1 deletion htdocs/themes/i386/views/view/search.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<form class="form-horizontal">
<form class="form-horizontal" action="<?php echo site_url('lists'); ?>">
<div class="control-group searchgroup">
<div class="controls">
<input id="search" name="search" type="text" placeholder="search" class="input-medium" value="<?php echo $this->input->get('search'); ?>" />
Expand Down

0 comments on commit b52e96f

Please sign in to comment.