# HG changeset patch # User robcast # Date 1137440189 -3600 # Node ID e6f7e0628a47e43445126378cc52960d0da1ddfe # Parent 41e941cfd1e37c74fa1a6192a8083abc4312b605 fixed problem with next/prev page button in oldskin (basically my bad for not properly adapting the new dllib.js) diff -r 41e941cfd1e3 -r e6f7e0628a47 client/digitallibrary/dllib.js --- a/client/digitallibrary/dllib.js Mon Jan 16 20:36:29 2006 +0100 +++ b/client/digitallibrary/dllib.js Mon Jan 16 20:36:29 2006 +0100 @@ -566,7 +566,9 @@ function gotoPage(gopage, keep) { // goto given page nr (+/-: relative) var oldpn = parseInt(getParameter("pn")); + // try setParameter with relative value setParameter("pn", gopage, true); + // check the result var pn = parseInt(getParameter("pn")); if (pn < 1) { alert("No such page! (Page number too low)");