• R/O
  • HTTP
  • SSH
  • HTTPS

nucleus-jp-ancient: Commit

Nucleus CMS日本語版SVNをgit-svnしたもの。リポジトリの変換作業用


Commit MetaInfo

Revisão5ae64b5a53dd08820a9a2c639b40612c1c130b31 (tree)
Hora2007-12-05 10:27:36
Autorkmorimatsu <kmorimatsu@1ca2...>
Commiterkmorimatsu

Mensagem de Log

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

Mudança Sumário

Diff

--- a/utf8/nucleus/libs/ACTION.php
+++ b/utf8/nucleus/libs/ACTION.php
@@ -15,8 +15,8 @@
1515 *
1616 * @license http://nucleuscms.org/license.txt GNU General Public License
1717 * @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 $
2020 */
2121 class ACTION
2222 {
@@ -200,8 +200,7 @@ class ACTION
200200
201201 // evaluate content from FormExtra
202202 $result = 1;
203- $data = array('type' => 'membermail', 'error' => &$result);
204- $manager->notify('ValidateForm', &$data);
203+ $manager->notify('ValidateForm', array('type' => 'membermail', 'error' => &$result));
205204
206205 if ($result!=1) {
207206 return $result;
Show on old repository browser