Skip to content
Snippets Groups Projects
Commit 94b8a9c2 authored by Seamus Lee's avatar Seamus Lee
Browse files

#907 Fix Deprecation notice for PHP7.2 in bin/cli.class.php

parent d3fb65a8
Branches
Tags
No related merge requests found
......@@ -146,7 +146,7 @@ class civicrm_cli {
// of this script
array_shift($args);
while (list($k, $arg) = each($args)) {
foreach ($args as $k => $arg) {
// sanitize all user input
$arg = $this->_sanitize($arg);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment