From 856650861f0c454b800fe816ba2592444ef13894 Mon Sep 17 00:00:00 2001 From: Meik Sievertsen Date: Sat, 22 Apr 2006 16:18:40 +0000 Subject: - removed group settings from roles - added forum icon in front of forums in permissions acp - added trace permissions in permission masks (thanks naderman for writing the first code and for the idea... :)) - some bugfixes - PHP6 fix git-svn-id: file:///svn/phpbb/trunk@5824 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/adm/style/simple_header.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'phpBB/adm/style/simple_header.html') diff --git a/phpBB/adm/style/simple_header.html b/phpBB/adm/style/simple_header.html index 3a21c3bdab..5672e1d64b 100644 --- a/phpBB/adm/style/simple_header.html +++ b/phpBB/adm/style/simple_header.html @@ -24,7 +24,7 @@ function jumpto() if (page !== null && !isNaN(page) && page > 0) { - document.location.href = base_url.replace('&', '&') + '&start=' + ((page - 1) * per_page); + document.location.href = base_url.replace(/&/g, '&') + '&start=' + ((page - 1) * per_page); } } -- cgit v1.2.1