OSDN Git Service

BugTrack/2420 AutoTicketLink - Improve regex and JSON encode
[pukiwiki/pukiwiki.git] / plugin / calendar_edit.inc.php
index ffcc028..878d332 100644 (file)
@@ -1,27 +1,24 @@
 <?php
-/////////////////////////////////////////////////
 // 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
 //
-// $Id: calendar_edit.inc.php,v 1.7 2004/07/31 03:09:20 henoheno Exp $
-//
+// Calendar_ edit plugin (needs calendar plugin)
 
 function plugin_calendar_edit_convert()
 {
        global $command;
 
-       $command = 'edit';
+       if (! file_exists(PLUGIN_DIR . 'calendar.inc.php')) return FALSE;
 
-       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;
-       }
+       require_once PLUGIN_DIR . 'calendar.inc.php';
+       if (! function_exists('plugin_calendar_convert')) return FALSE;
 
+       $command = 'edit';
        $args = func_num_args() ? func_get_args() : array();
-       return call_user_func_array('plugin_calendar_convert',$args);
+       return call_user_func_array('plugin_calendar_convert', $args);
 }
 ?>