From b486b6f076aba4ee139798233ab39821771c0389 Mon Sep 17 00:00:00 2001 From: phpnut Date: Thu, 5 Apr 2007 16:09:51 +0000 Subject: [PATCH] Adding fix for Ticket #2351 git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@4783 3807eeeb-6ff5-0310-8944-8be069107fe0 --- cake/basics.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cake/basics.php b/cake/basics.php index 6ca96b793..49cfea939 100644 --- a/cake/basics.php +++ b/cake/basics.php @@ -1388,7 +1388,7 @@ $args = func_get_args(); foreach ($args[0] as $valueKey => $valueData) { for ($i = 1; $i < func_num_args(); $i++) { - if (isset($arg[$i][$valueKey])) { + if (isset($args[$i][$valueKey])) { continue 2; } }