# HG changeset patch # User Charlie Root # Date 1756392822 14400 # Node ID c822d3ec1f939deb33f1502d15f71a91f0b52d5d # Parent e11491f625b07bea22073154169a51d773c4f830 quote needed now diff -r e11491f625b0 -r c822d3ec1f93 plugins/advanced_search/advanced_search.php --- a/plugins/advanced_search/advanced_search.php Thu Aug 28 10:40:29 2025 -0400 +++ b/plugins/advanced_search/advanced_search.php Thu Aug 28 10:53:42 2025 -0400 @@ -442,7 +442,7 @@ { $search_button = new html_inputfield(array('type' => 'submit', 'name' => 'search', 'class' => 'button mainaction', 'value' => $this->i18n_strings['search'])); $reset_button = new html_inputfield(array('type' => 'reset', 'name' => 'reset', 'class' => 'button reset', 'value' => $this->i18n_strings['resetsearch'])); - $save_button = html::tag('input', array('type' => 'submit', 'name' => 'save_the_search', id=> 'save_the_search', 'class' => 'button save_search', 'value' => $this->i18n_strings['save_the_search'])); + $save_button = html::tag('input', array('type' => 'submit', 'name' => 'save_the_search', 'id' => 'save_the_search', 'class' => 'button save_search', 'value' => $this->i18n_strings['save_the_search'])); $delete_button = new html_inputfield(array('type' => 'submit', 'name' => 'delete', 'style' => 'display: none;', 'class' => 'button delete_search', 'value' => $this->i18n_strings['deletesearch'])); $layout_table = new html_table();