Commit 5de8c00b authored by Christophe Dumez's avatar Christophe Dumez

- fixed an order bug in commit list (could be important for svn del)

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@6916 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 2802cced
......@@ -76,6 +76,7 @@ else:\n
print \'\'\'\n
<script>\n
// Konqueror is unsupported at the moment, it works but it is a little buggy\n
// Konqueror 3.5 is doing quite well but isn\'t default on Mandriva 2006\n
if(navigator.userAgent.indexOf(\'Konqueror\') != -1 || navigator.userAgent.indexOf(\'konqueror\') != -1){\n
document.write("<font color=\'red\'>Your web browser is unsupported, hence you may experience some problems. <b>Firefox</b> is advised.</font>");\n
}\n
......@@ -184,7 +185,7 @@ print \'\'\'\n
}\n
form.added.value=filesAdded;\n
if(nbRemoved!=0){\n
filesRemoved=FilesRemovedArray.join(\',\');\n
filesRemoved=FilesRemovedArray.reverse().join(\',\');\n
}else{\n
filesRemoved=\'none\';\n
}\n
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment