From 5850a9bba15746c235b0691890371c59a043933a Mon Sep 17 00:00:00 2001 From: tomas Date: Wed, 12 Jan 2005 11:02:56 +0000 Subject: [PATCH] wrong & in JS code fixed --- .../modules/storageServer/var/html/gbHtmlBrowse.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/livesupport/modules/storageServer/var/html/gbHtmlBrowse.php b/livesupport/modules/storageServer/var/html/gbHtmlBrowse.php index a7f9b9d41..48b1b8043 100644 --- a/livesupport/modules/storageServer/var/html/gbHtmlBrowse.php +++ b/livesupport/modules/storageServer/var/html/gbHtmlBrowse.php @@ -100,22 +100,22 @@ $tpldata['showMenu']=true; function fmove(id, relPath){ var newPath=prompt('Destination folder (relative path):', relPath); if(newPath==null) return; - location.href='gbHttp.php?id='+id+'&act=move&newPath='+newPath; + location.href='gbHttp.php?id='+id+'&act=move&newPath='+newPath; } function fcopy(id, relPath){ var newPath=prompt('Destination folder (relative path):', relPath); if(newPath==null) return; - location.href='gbHttp.php?id='+id+'&act=copy&newPath='+newPath; + location.href='gbHttp.php?id='+id+'&act=copy&newPath='+newPath; } function freplicate(name, id){ var np=prompt('Destination folder (relative path):', id); if(np==null) return; - location.href='gbHttp.php?id='+id+'&act=repl&newparid='+np; + location.href='gbHttp.php?id='+id+'&act=repl&newparid='+np; } function newFolder(){ var nn=prompt('New folder name:'); if(nn==null) return; - location.href='gbHttp.php?id=&act=newFolder&newname='+nn; + location.href='gbHttp.php?id=&act=newFolder&newname='+nn; } -->