OSDN Git Service

BugTrack/2420 AutoTicketLink - Improve regex and JSON encode
[pukiwiki/pukiwiki.git] / plugin / calendar_edit.inc.php
index ed1e75c..878d332 100644 (file)
@@ -1,26 +1,24 @@
-<?
-// $Id: calendar_edit.inc.php,v 1.3 2002/06/26 06:23:57 masui Exp $
+<?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
+//
+// Calendar_ edit plugin (needs calendar plugin)
 
 function plugin_calendar_edit_convert()
 {
        global $command;
-       
-       $command = edit;
 
-       if(func_num_args())
-               $aryargs = func_get_args();
-       else
-               $aryargs = array();
+       if (! file_exists(PLUGIN_DIR . 'calendar.inc.php')) return FALSE;
 
-       
-       if(file_exists(PLUGIN_DIR."calendar.inc.php"))
-       {
-               require_once PLUGIN_DIR."calendar.inc.php";
-               return call_user_func_array("plugin_calendar_convert",$aryargs);
-       }
-       else
-       {
-               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);
 }
 ?>