diff options
author | Nils Adermann <naderman@naderman.de> | 2006-06-04 16:30:58 +0000 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2006-06-04 16:30:58 +0000 |
commit | 5c181bc5289c54322d61dcc008e539f7c32e882b (patch) | |
tree | 440352ec19a1035388d00945da85a38731e04897 /phpBB/adm/style/permission_trace.html | |
parent | f3499d12518c38082c2ecf60958e7336195a941b (diff) | |
download | forums-5c181bc5289c54322d61dcc008e539f7c32e882b.tar forums-5c181bc5289c54322d61dcc008e539f7c32e882b.tar.gz forums-5c181bc5289c54322d61dcc008e539f7c32e882b.tar.bz2 forums-5c181bc5289c54322d61dcc008e539f7c32e882b.tar.xz forums-5c181bc5289c54322d61dcc008e539f7c32e882b.zip |
- permission trace correctly uses language variables now
- updated documentation for the auth class
- use cache for "SELECT forum_name FROM phpbb_forums WHERE forum_id = X" queries everywhere and not only in functions_display
- updated the permission trace to include information about global settings overwriting local ones
- take global permissions into account for local permission results on the view permission pages for users
- only allow to change the post author with m_chgposter
git-svn-id: file:///svn/phpbb/trunk@6009 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm/style/permission_trace.html')
-rw-r--r-- | phpBB/adm/style/permission_trace.html | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/phpBB/adm/style/permission_trace.html b/phpBB/adm/style/permission_trace.html index 25c7054dde..0bf889adaf 100644 --- a/phpBB/adm/style/permission_trace.html +++ b/phpBB/adm/style/permission_trace.html @@ -2,17 +2,19 @@ <div style="background-color: #fff; padding: 10px; margin-top: 10px;" class="permissions"> - <h3>Trace for: {PERMISSION_USERNAME} / {PERMISSION}</h3> + <!-- IF U_BACK --><a href="{U_BACK}" style="float: right">« {L_BACK}</a><!-- ENDIF --> + + <h3>{L_TRACE_FOR}: {PERMISSION_USERNAME} / <!-- IF FORUM_NAME -->{FORUM_NAME} / <!-- ENDIF -->{PERMISSION} </h3> <br /> <table cellspacing="1" class="type1"> <thead> <tr> - <th>Who</th> - <th style="width: 50px;">Setting</th> - <th style="width: 50px;">Total</th> - <th>Information</th> + <th>{L_TRACE_WHO}</th> + <th style="width: 50px;">{L_ACL_SETTING}</th> + <th style="width: 50px;">{L_TRACE_TOTAL}</th> + <th>{L_INFORMATION}</th> </tr> </thead> <tbody> |