From: <var...@us...> - 2012-11-26 19:51:39
|
Revision: 8550 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=8550&view=rev Author: vargenau Date: 2012-11-26 19:51:33 +0000 (Mon, 26 Nov 2012) Log Message: ----------- Less messages Modified Paths: -------------- trunk/lib/plugin/IncludePage.php trunk/lib/plugin/UnfoldSubpages.php Modified: trunk/lib/plugin/IncludePage.php =================================================================== --- trunk/lib/plugin/IncludePage.php 2012-11-26 19:49:36 UTC (rev 8549) +++ trunk/lib/plugin/IncludePage.php 2012-11-26 19:51:33 UTC (rev 8550) @@ -105,7 +105,7 @@ // Check if user is allowed to get the Page. if (!mayAccessPage('view', $page)) { - return $this->error(sprintf(_("Illegal inclusion of page %s: no read access"), + return $this->error(sprintf(_("Illegal inclusion of page %s: no read access."), $page)); } Modified: trunk/lib/plugin/UnfoldSubpages.php =================================================================== --- trunk/lib/plugin/UnfoldSubpages.php 2012-11-26 19:49:36 UTC (rev 8549) +++ trunk/lib/plugin/UnfoldSubpages.php 2012-11-26 19:51:33 UTC (rev 8550) @@ -108,7 +108,7 @@ // Check if user is allowed to get the Page. if (!mayAccessPage('view', $cpagename)) { - return $this->error(sprintf(_("Illegal inclusion of page %s: no read access"), + return $this->error(sprintf(_("Illegal inclusion of page %s: no read access."), $cpagename)); } @@ -140,7 +140,7 @@ // Check if user is allowed to get the Page. if (!mayAccessPage('view', $cpagename)) { - return $this->error(sprintf(_("Illegal inclusion of page %s: no read access"), + return $this->error(sprintf(_("Illegal inclusion of page %s: no read access."), $cpagename)); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |