Fix typo spotted by morganiq.

git-svn-id: https://develop.svn.wordpress.org/trunk@2197 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2005-02-01 17:27:10 +00:00
parent 2f84e4d158
commit 4247199e8d
1 changed files with 1 additions and 1 deletions

View File

@ -937,7 +937,7 @@ function do_action($tag, $arg = '') {
if ( is_array($arg) )
$args = $arg + array_slice(func_get_args(), 2);
else
$args = array($action) + array_slice(func_get_args(), 2);
$args = array($arg) + array_slice(func_get_args(), 2);
merge_filters($tag);