From: <var...@us...> - 2010-09-03 08:45:52
|
Revision: 7672 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7672&view=rev Author: vargenau Date: 2010-09-03 08:45:45 +0000 (Fri, 03 Sep 2010) Log Message: ----------- A user can lock its own page Modified Paths: -------------- trunk/themes/MonoBook/templates/viewsource.tmpl trunk/themes/Portland/templates/viewsource.tmpl trunk/themes/Wordpress/templates/viewsource.tmpl trunk/themes/blog/templates/viewsource.tmpl trunk/themes/default/templates/viewsource.tmpl Modified: trunk/themes/MonoBook/templates/viewsource.tmpl =================================================================== --- trunk/themes/MonoBook/templates/viewsource.tmpl 2010-09-02 20:07:31 UTC (rev 7671) +++ trunk/themes/MonoBook/templates/viewsource.tmpl 2010-09-03 08:45:45 UTC (rev 7672) @@ -3,7 +3,7 @@ ?> <?php if ($page->get('locked') && !$user->isAdmin()) { ?> <p><strong><?php echo _("Note:")?></strong> - <?php echo _("This page has been locked by the administrator and cannot be edited.")?> + <?php echo _("This page has been locked and cannot be edited.")?> </p> <?php } ?> <?php if ($revision and !$revision->isCurrent()) { ?> Modified: trunk/themes/Portland/templates/viewsource.tmpl =================================================================== --- trunk/themes/Portland/templates/viewsource.tmpl 2010-09-02 20:07:31 UTC (rev 7671) +++ trunk/themes/Portland/templates/viewsource.tmpl 2010-09-03 08:45:45 UTC (rev 7672) @@ -4,7 +4,7 @@ <?php if ($page->get('locked') && !$user->isAdmin()) { ?> <p><strong><?php echo _("Note:")?></strong> - <?php echo _("This page has been locked by the administrator and cannot be edited.")?></p> + <?php echo _("This page has been locked and cannot be edited.")?></p> <?php } ?> <?php if ($revision and !$revision->isCurrent()) { ?> Modified: trunk/themes/Wordpress/templates/viewsource.tmpl =================================================================== --- trunk/themes/Wordpress/templates/viewsource.tmpl 2010-09-02 20:07:31 UTC (rev 7671) +++ trunk/themes/Wordpress/templates/viewsource.tmpl 2010-09-03 08:45:45 UTC (rev 7672) @@ -8,7 +8,7 @@ if (empty($revision)) $revision = $page->getCurrentRevision(false); if ($page->get('locked') && !$user->isAdmin()) { ?> <p><strong><?php echo _("Note:")?></strong> - <?php echo _("This page has been locked by the administrator and cannot be edited.")?></p> + <?php echo _("This page has been locked and cannot be edited.")?></p> <?php } ?> <?php if (! $revision->isCurrent()) { ?> Modified: trunk/themes/blog/templates/viewsource.tmpl =================================================================== --- trunk/themes/blog/templates/viewsource.tmpl 2010-09-02 20:07:31 UTC (rev 7671) +++ trunk/themes/blog/templates/viewsource.tmpl 2010-09-03 08:45:45 UTC (rev 7672) @@ -5,7 +5,7 @@ if (empty($revision)) $revision = $page->getCurrentRevision(false); if ($page->get('locked') && !$user->isAdmin()) { ?> <p><strong><?php echo _("Note:")?></strong> - <?php echo _("This page has been locked by the administrator and cannot be edited.")?> + <?php echo _("This page has been locked and cannot be edited.")?> </p> <?php } ?> <?php if (! $revision->isCurrent()) { ?> Modified: trunk/themes/default/templates/viewsource.tmpl =================================================================== --- trunk/themes/default/templates/viewsource.tmpl 2010-09-02 20:07:31 UTC (rev 7671) +++ trunk/themes/default/templates/viewsource.tmpl 2010-09-03 08:45:45 UTC (rev 7672) @@ -4,7 +4,7 @@ <?php if ($page->get('locked') && !$user->isAdmin()) { ?> <p><strong><?php echo _("Note:")?></strong> - <?php echo _("This page has been locked by the administrator and cannot be edited.")?> + <?php echo _("This page has been locked and cannot be edited.")?> </p> <?php } ?> <?php if ($revision and !$revision->isCurrent()) { ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |