--- loncom/html/res/adm/pages/menu.html 2002/05/06 21:59:29 1.49
+++ loncom/html/res/adm/pages/menu.html 2002/05/13 18:32:11 1.50
@@ -4,7 +4,7 @@ The LearningOnline Network with CAPA
Remote Control
//
-// $Id: menu.html,v 1.49 2002/05/06 21:59:29 matthew Exp $
+// $Id: menu.html,v 1.50 2002/05/13 18:32:11 matthew Exp $
//
// Copyright Michigan State University Board of Trustees
//
@@ -209,8 +209,11 @@ function setstatus(tp,bt) {
function cstrgo(currenturl,defaulturl) {
windowcheck();
var url;
+ var reg = /\.(\d+)\.(\w+)$/;
if (currenturl == null || currenturl == '') {
url = defaulturl;
+ } else if (reg.test(currenturl)) {
+ url = defaulturl;
} else {
url = currenturl;
var res_pattern = /^\/res\/[A-z0-p]+\//;