From: <var...@us...> - 2011-01-04 17:50:40
|
Revision: 7805 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7805&view=rev Author: vargenau Date: 2011-01-04 17:50:32 +0000 (Tue, 04 Jan 2011) Log Message: ----------- Typography Modified Paths: -------------- trunk/lib/plugin/FrameInclude.php trunk/lib/plugin/ListSubpages.php trunk/lib/plugin/Transclude.php trunk/lib/plugin/UnfoldSubpages.php Modified: trunk/lib/plugin/FrameInclude.php =================================================================== --- trunk/lib/plugin/FrameInclude.php 2011-01-04 14:21:32 UTC (rev 7804) +++ trunk/lib/plugin/FrameInclude.php 2011-01-04 17:50:32 UTC (rev 7805) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ /* * Copyright 2002 $ThePhpWikiProgrammingTeam * @@ -85,7 +85,7 @@ if (!$src and $page) { if ($page == $request->get('pagename')) { - return $this->error(sprintf(_("recursive inclusion of page %s"), + return $this->error(sprintf(_("Recursive inclusion of page %s"), $page)); } $src = WikiURL($page); @@ -97,7 +97,7 @@ // FIXME: How to normalize url's to compare against recursion? if ($src == $request->getURLtoSelf() ) { - return $this->error(sprintf(_("recursive inclusion of url %s"), + return $this->error(sprintf(_("Recursive inclusion of url %s"), $src)); } Modified: trunk/lib/plugin/ListSubpages.php =================================================================== --- trunk/lib/plugin/ListSubpages.php 2011-01-04 14:21:32 UTC (rev 7804) +++ trunk/lib/plugin/ListSubpages.php 2011-01-04 17:50:32 UTC (rev 7805) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ /* * Copyright 2002 $ThePhpWikiProgrammingTeam * @@ -91,7 +91,7 @@ // A page cannot include itself. Avoid doublettes. static $included_pages = array(); if (in_array($page, $included_pages)) { - $content->pushContent(HTML::p(sprintf(_("recursive inclusion of page %s ignored"), + $content->pushContent(HTML::p(sprintf(_("Recursive inclusion of page %s ignored"), $page))); continue; } Modified: trunk/lib/plugin/Transclude.php =================================================================== --- trunk/lib/plugin/Transclude.php 2011-01-04 14:21:32 UTC (rev 7804) +++ trunk/lib/plugin/Transclude.php 2011-01-04 17:50:32 UTC (rev 7805) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ /** * Copyright 1999,2000,2001,2002,2006 $ThePhpWikiProgrammingTeam * @@ -85,7 +85,7 @@ // FIXME: Better recursion detection. // FIXME: Currently this doesnt work at all. if ($src == $request->getURLtoSelf() ) { - return $this->error(fmt("recursive inclusion of url %s", $src)); + return $this->error(fmt("Recursive inclusion of url %s", $src)); } if (! IsSafeURL($src)) { return $this->error(_("Bad url in src: remove all of <, >, \"")); Modified: trunk/lib/plugin/UnfoldSubpages.php =================================================================== --- trunk/lib/plugin/UnfoldSubpages.php 2011-01-04 14:21:32 UTC (rev 7804) +++ trunk/lib/plugin/UnfoldSubpages.php 2011-01-04 17:50:32 UTC (rev 7805) @@ -1,5 +1,5 @@ <?php // -*-php-*- -// rcs_id('$Id$'); +// $Id$ /* * Copyright 2002,2004,2005 $ThePhpWikiProgrammingTeam * @@ -97,7 +97,7 @@ continue; // A page cannot include itself. Avoid doublettes. if (in_array($cpagename, $included_pages)) { - $content->pushContent(HTML::p(sprintf(_("recursive inclusion of page %s ignored"), + $content->pushContent(HTML::p(sprintf(_("Recursive inclusion of page %s ignored"), $cpagename))); continue; } @@ -127,7 +127,7 @@ if (in_array($m[1], $included_pages)) { if (!$quiet) $content->pushContent( - HTML::p(sprintf(_("recursive inclusion of page %s ignored"), + HTML::p(sprintf(_("Recursive inclusion of page %s ignored"), $cpagename.' => '.$m[1]))); continue; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |