The patch fix this, after changing a bad "if". --- .../intranet-tmpl/prog/en/includes/resort_form.inc | 2 +- .../opac-tmpl/prog/en/includes/resort_form.inc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/resort_form.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/resort_form.inc index 1daab58..22c9d0e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/resort_form.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/resort_form.inc @@ -65,7 +65,7 @@ <option value="acqdate_dsc">Acquisition Date: Newest to Oldest</option> <!-- /TMPL_IF --> - <!-- TMPL_IF NAME="acqdate_dsc" --> + <!-- TMPL_IF NAME="acqdate_asc" --> <option value="acqdate_asc" selected="selected">Acquisition Date: Oldest to Newest</option> <!-- TMPL_ELSE --> <option value="acqdate_asc">Acquisition Date: Oldest to Newest</option> diff --git a/koha-tmpl/opac-tmpl/prog/en/includes/resort_form.inc b/koha-tmpl/opac-tmpl/prog/en/includes/resort_form.inc index 0d7c758..1ea5941 100644 --- a/koha-tmpl/opac-tmpl/prog/en/includes/resort_form.inc +++ b/koha-tmpl/opac-tmpl/prog/en/includes/resort_form.inc @@ -23,7 +23,7 @@ <option value="pubdate_asc" selected="selected">Publication/Copyright Date: Oldest to Newest</option><!-- TMPL_ELSE --> <option value="pubdate_asc">Publication/Copyright Date: Oldest to Newest</option><!-- /TMPL_IF --><!-- TMPL_IF NAME="acqdate_dsc" --> <option value="acqdate_dsc" selected="selected">Acquisition Date: Newest to Oldest</option><!-- TMPL_ELSE --> -<option value="acqdate_dsc">Acquisition Date: Newest to Oldest</option><!-- /TMPL_IF --><!-- TMPL_IF NAME="acqdate_dsc" --> +<option value="acqdate_dsc">Acquisition Date: Newest to Oldest</option><!-- /TMPL_IF --><!-- TMPL_IF NAME="acqdate_asc" --> <option value="acqdate_asc" selected="selected">Acquisition Date: Oldest to Newest</option><!-- TMPL_ELSE --> <option value="acqdate_asc">Acquisition Date: Oldest to Newest</option><!-- /TMPL_IF --> </optgroup> -- 1.5.4.3 _______________________________________________ Koha-patches mailing list [email protected] http://lists.koha.org/mailman/listinfo/koha-patches
