--- loncom/html/res/adm/pages/menu.html 2002/07/24 19:48:58 1.62 +++ loncom/html/res/adm/pages/menu.html 2002/07/25 18:43:14 1.63 @@ -4,7 +4,7 @@ The LearningOnline Network with CAPA Remote Control // -// $Id: menu.html,v 1.62 2002/07/24 19:48:58 www Exp $ +// $Id: menu.html,v 1.63 2002/07/25 18:43:14 www Exp $ // // Copyright Michigan State University Board of Trustees // @@ -101,7 +101,12 @@ function advanceclock() { var mons=""+(clock.getMonth()+1); if (mons.length<2) { mons="0"+mons; } var years=""+clock.getYear(); - years=years.substring(1,3); + + if (years>1000) { + years=years.substring(2,4); + } else { + years=years.substring(1,3); + } statustop=mons+'/'+days+'/'+years; var secs=""+clock.getSeconds();