mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-08 02:11:59 +01:00
minor webui cosmetic fixes
This commit is contained in:
parent
1eb5d46e74
commit
9b3b996286
@ -70,7 +70,7 @@ class ControllerSearchHelper extends Controller {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if($this->a['ref']) { $this->data['_ref'] = $this->a['ref']; }
|
if($this->a['ref']) { $this->data['_ref'] = $this->a['ref']; }
|
||||||
if($this->request->post['ref']) { $this->data['_ref'] = $this->request->post['ref']; }
|
if(isset($this->request->post['ref']) && $this->request->post['ref']) { $this->data['_ref'] = $this->request->post['ref']; }
|
||||||
|
|
||||||
/* paging info */
|
/* paging info */
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
<?php } if($n > 0){ ?>
|
<?php } if($n > 0){ ?>
|
||||||
<div id="tagbox"<?php if($n < $page_len) { ?> style="margin-left: 265px;"<?php } ?>>
|
<div id="tagbox"<?php if($n < $page_len) { ?> style="margin-left: 265px;"<?php } ?>>
|
||||||
<input type="hidden" id="tag_keys" name="tag_keys" value="<?php print $all_ids; ?>" />
|
<input type="hidden" id="tag_keys" name="tag_keys" value="<?php print $all_ids; ?>" />
|
||||||
<input type="hidden" id="_ref" name="_ref" value="<?php print $_ref; ?>" />
|
<input type="hidden" id="_ref" name="_ref" value="<?php if(isset($_ref)) { print $_ref; } ?>" />
|
||||||
|
|
||||||
<?php print $text_tag_search_results; ?>: <input type="text" id="tag_value" name="tag_value" class="tagtext" /> <input type="button" class="tag" onclick="javascript: tag_search_results('<?php print SEARCH_TAG_URL; ?>'); var __ref = document.getElementById('_ref').value; if(__ref) { add_message_reference_to_form(__ref); } load_search_results('<?php print SEARCH_HELPER_URL; ?>', assemble_search_term(count), 0); return false;" value="OK" />
|
<?php print $text_tag_search_results; ?>: <input type="text" id="tag_value" name="tag_value" class="tagtext" /> <input type="button" class="tag" onclick="javascript: tag_search_results('<?php print SEARCH_TAG_URL; ?>'); var __ref = document.getElementById('_ref').value; if(__ref) { add_message_reference_to_form(__ref); } load_search_results('<?php print SEARCH_HELPER_URL; ?>', assemble_search_term(count), 0); return false;" value="OK" />
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user