OSDN Git Service

BugTrack/2513 Bold style Table cell (BOLD:...)
[pukiwiki/pukiwiki.git] / plugin / calendar_edit.inc.php
index 224692c..878d332 100644 (file)
@@ -1,19 +1,24 @@
 <?php
-// $Id: calendar_edit.inc.php,v 1.5 2003/01/27 05:38:44 panda Exp $
+// PukiWiki - Yet another WikiWikiWeb clone.
+// $Id: calendar_edit.inc.php,v 1.10 2005/05/04 05:07:51 henoheno Exp $
+// Copyright (C)
+//   2003,2005 PukiWiki Developers Team
+//   2001-2002 Originally written by yu-ji
+// License: GPL v2 or (at your option) any later version
+//
+// Calendar_ edit plugin (needs calendar plugin)
 
-function plugin_calendar_read_convert()
+function plugin_calendar_edit_convert()
 {
        global $command;
-       
+
+       if (! file_exists(PLUGIN_DIR . 'calendar.inc.php')) return FALSE;
+
+       require_once PLUGIN_DIR . 'calendar.inc.php';
+       if (! function_exists('plugin_calendar_convert')) return FALSE;
+
        $command = 'edit';
-       
-       if (!file_exists(PLUGIN_DIR.'calendar.inc.php')) {
-               return FALSE;
-       }
-       require_once PLUGIN_DIR.'calendar.inc.php';
-       
-       return call_user_func_array('plugin_calendar_convert',
-               func_num_args() ? func_get_args() : array()
-       );
+       $args = func_num_args() ? func_get_args() : array();
+       return call_user_func_array('plugin_calendar_convert', $args);
 }
 ?>