aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/mcp/mcp_logs.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2020-01-01 16:35:42 +0100
committerMarc Alexander <admin@m-a-styles.de>2020-01-01 16:35:42 +0100
commit7ae750214661214984e7944ef86698087ac7d2bd (patch)
tree9b7071dcc1a7e8662510aae431cf6e261e5c0bd9 /phpBB/includes/mcp/mcp_logs.php
parent7a294b5fcd7e38beb52bf3f899b483da476c0c59 (diff)
parent374dc92e8f5659f4035bee05a902e773fede1177 (diff)
downloadforums-7ae750214661214984e7944ef86698087ac7d2bd.tar
forums-7ae750214661214984e7944ef86698087ac7d2bd.tar.gz
forums-7ae750214661214984e7944ef86698087ac7d2bd.tar.bz2
forums-7ae750214661214984e7944ef86698087ac7d2bd.tar.xz
forums-7ae750214661214984e7944ef86698087ac7d2bd.zip
Merge pull request #5798 from rxu/ticket/16277
[ticket/16277] Move from each() function
Diffstat (limited to 'phpBB/includes/mcp/mcp_logs.php')
-rw-r--r--phpBB/includes/mcp/mcp_logs.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/mcp/mcp_logs.php b/phpBB/includes/mcp/mcp_logs.php
index 79f9d35ebe..dc098fceed 100644
--- a/phpBB/includes/mcp/mcp_logs.php
+++ b/phpBB/includes/mcp/mcp_logs.php
@@ -44,7 +44,7 @@ class mcp_logs
if (is_array($action))
{
- list($action, ) = each($action);
+ $action = key($action);
}
else
{