Nucleus CMS日本語版SVNをgit-svnしたもの。リポジトリの変換作業用
Revisão | 5ae64b5a53dd08820a9a2c639b40612c1c130b31 (tree) |
---|---|
Hora | 2007-12-05 10:27:36 |
Autor | kmorimatsu <kmorimatsu@1ca2...> |
Commiter | kmorimatsu |
Avoid the warning of call-time pass-by-reference deprecation for $manager->notify
git-svn-id: https://svn.sourceforge.jp/svnroot/nucleus-jp/nucleus-jp/branches/branch-3-3@357 1ca29b6e-896d-4ea0-84a5-967f57386b96
@@ -15,8 +15,8 @@ | ||
15 | 15 | * |
16 | 16 | * @license http://nucleuscms.org/license.txt GNU General Public License |
17 | 17 | * @copyright Copyright (C) 2002-2007 The Nucleus Group |
18 | - * @version $Id: ACTION.php,v 1.8.2.3 2007-10-24 09:05:58 kimitake Exp $ | |
19 | - * $NucleusJP: ACTION.php,v 1.8.2.2 2007/10/23 06:24:50 kimitake Exp $ | |
18 | + * @version $Id: ACTION.php,v 1.8.2.4 2007-12-05 01:27:36 kmorimatsu Exp $ | |
19 | + * $NucleusJP: ACTION.php,v 1.8.2.3 2007/10/24 09:05:58 kimitake Exp $ | |
20 | 20 | */ |
21 | 21 | class ACTION |
22 | 22 | { |
@@ -200,8 +200,7 @@ class ACTION | ||
200 | 200 | |
201 | 201 | // evaluate content from FormExtra |
202 | 202 | $result = 1; |
203 | - $data = array('type' => 'membermail', 'error' => &$result); | |
204 | - $manager->notify('ValidateForm', &$data); | |
203 | + $manager->notify('ValidateForm', array('type' => 'membermail', 'error' => &$result)); | |
205 | 204 | |
206 | 205 | if ($result!=1) { |
207 | 206 | return $result; |