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; } -->