From: <var...@us...> - 2009-02-27 02:21:18
|
Revision: 6589 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6589&view=rev Author: vargenau Date: 2009-02-27 02:21:11 +0000 (Fri, 27 Feb 2009) Log Message: ----------- Return something in run Modified Paths: -------------- trunk/lib/plugin/Comment.php Modified: trunk/lib/plugin/Comment.php =================================================================== --- trunk/lib/plugin/Comment.php 2009-02-26 20:13:23 UTC (rev 6588) +++ trunk/lib/plugin/Comment.php 2009-02-27 02:21:11 UTC (rev 6589) @@ -1,5 +1,28 @@ <?php // -*-php-*- rcs_id('$Id$'); + +/* + * Copyright (C) 2003 Martin Geisler + * Copyright (C) 2003-2004 $ThePhpWikiProgrammingTeam + * Copyright (C) 2009 Alcatel-Lucent, Alcatel-Lucent + * + * This file is part of PhpWiki. + * + * PhpWiki 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. + * + * PhpWiki is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with PhpWiki; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +*/ + /** * A WikiPlugin for putting comments in WikiPages * @@ -38,18 +61,10 @@ } function run($dbi, $argstr, &$request, $basepage) { + return HTML::raw(''); } - - // function handle_plugin_args_cruft(&$argstr, &$args) { - // } - }; -// $Log: not supported by cvs2svn $ -// Revision 1.1 2003/01/28 17:57:15 carstenklapp -// Martin Geisler's clever Comment plugin. -// - // For emacs users // Local Variables: // mode: php This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |