OSDN Git Service

Subversion由来のタグを削除
[nucleus-jp/nucleus-jp-ancient.git] / nucleus / bookmarklet.php
index 86b9088..1f0c089 100755 (executable)
@@ -1,22 +1,16 @@
 <?php
 /*
  * Nucleus: PHP/MySQL Weblog CMS (http://nucleuscms.org/)
- * Copyright (C) 2002-2011 The Nucleus Group
+ * Copyright (C) 2002-2012 The Nucleus Group
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
  * as published by the Free Software Foundation; either version 2
  * of the License, or (at your option) any later version.
  * (see nucleus/documentation/index.html#license for more info)
- */
-/**
+ *
  * This script allows adding items to Nucleus through bookmarklets. The member must be logged in
  * in order to use this.
- *
- * @license http://nucleuscms.org/license.txt GNU General Public License
- * @copyright Copyright (C) 2002-2011 The Nucleus Group
- * @version $Id$
- * $NucleusJP: bookmarklet.php,v 1.9.2.1 2007/09/07 07:16:39 kimitake Exp $
  */
 
 // bookmarklet is part of admin area (might need XML-RPC)
@@ -293,7 +287,8 @@ function bm_doEditForm() {
        $item =& $manager->getItem($itemid, 1, 1);
        $blog =& $manager->getBlog(getBlogIDFromItemID($itemid) );
 
-       $manager->notify('PrepareItemForEdit', array('item' => &$item) );
+       $param = array('item' => &$item);
+       $manager->notify('PrepareItemForEdit', $param);
 
        if ($blog->convertBreaks() ) {
                $item['body'] = removeBreaks($item['body']);