From a0f8e1323a0fb50e6a4b7449f93b493377eddd2c Mon Sep 17 00:00:00 2001 From: Meik Sievertsen Date: Mon, 17 Apr 2006 13:09:50 +0000 Subject: - clean up marklist calls (global function) - added new feature: test out others permissions (admin permissions will not be copied) - changed attachment processing by directly using the template engine - fixed some attachment related bugs - additional tiny fixes git-svn-id: file:///svn/phpbb/trunk@5790 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/adm/style/acp_main.html | 60 ++++++++++++++++++++----------------- phpBB/adm/style/acp_users.html | 1 + phpBB/adm/style/overall_header.html | 5 ++++ 3 files changed, 38 insertions(+), 28 deletions(-) (limited to 'phpBB/adm/style') diff --git a/phpBB/adm/style/acp_main.html b/phpBB/adm/style/acp_main.html index 1b521e1ec9..f293c31147 100644 --- a/phpBB/adm/style/acp_main.html +++ b/phpBB/adm/style/acp_main.html @@ -61,39 +61,43 @@ -
-
- + + +
+ - -
- + +
+ + -

{L_ADMIN_LOG}

+ +

{L_ADMIN_LOG}

-

{L_ADMIN_LOG_INDEX_EXPLAIN}

+

{L_ADMIN_LOG_INDEX_EXPLAIN}

- - - - - - - - - - - - - - - - - +
{L_USERNAME}{L_IP}{L_TIME}{L_ACTION}
{log.USERNAME}{log.IP}{log.DATE}{log.ACTION}
+ + + + + + - - -
{L_USERNAME}{L_IP}{L_TIME}{L_ACTION}
+ + + + + + {log.USERNAME} + {log.IP} + {log.DATE} + {log.ACTION} + + + + +

{L_INACTIVE_USERS}

diff --git a/phpBB/adm/style/acp_users.html b/phpBB/adm/style/acp_users.html index 0df5e86b97..a7a66f5d5e 100644 --- a/phpBB/adm/style/acp_users.html +++ b/phpBB/adm/style/acp_users.html @@ -84,6 +84,7 @@

{L_NAME_CHARS_EXPLAIN}
+
[ {L_USE_PERMISSIONS} ]
diff --git a/phpBB/adm/style/overall_header.html b/phpBB/adm/style/overall_header.html index 9345ae0682..f719ec8074 100644 --- a/phpBB/adm/style/overall_header.html +++ b/phpBB/adm/style/overall_header.html @@ -50,6 +50,11 @@ function dE(n, s, type) function marklist(id, name, state) { var parent = document.getElementById(id); + if (!parent) + { + eval('parent = document.' + id); + } + if (!parent) { return; -- cgit v1.2.1