SF.net SVN: phpwiki:[10843] trunk/lib/plugin/WikiAdminRename.php

vargenau--- via phpwiki-checkins <[email protected]> Thu, 06 Jan 2022 09:35:41 +0000
Newsgroups gmane.comp.web.wiki.phpwiki.checkins
Message-ID <[email protected]>
Revision: 10843
          http://sourceforge.net/p/phpwiki/code/10843
Author:   vargenau
Date:     2022-01-06 09:35:41 +0000 (Thu, 06 Jan 2022)
Log Message:
-----------
lib/plugin/WikiAdminRename.php: selected pages --> following pages

Modified Paths:
--------------
    trunk/lib/plugin/WikiAdminRename.php

Modified: trunk/lib/plugin/WikiAdminRename.php
===================================================================
--- trunk/lib/plugin/WikiAdminRename.php	2022-01-06 09:31:46 UTC (rev 10842)
+++ trunk/lib/plugin/WikiAdminRename.php	2022-01-06 09:35:41 UTC (rev 10843)
@@ -26,7 +26,6 @@
 /**
  * Usage:   <<WikiAdminRename >> or called via WikiAdminSelect
  * @author:  Reini Urban
- *
  */
 
 require_once 'lib/PageList.php';
@@ -131,7 +130,7 @@
         if ($next_action == 'select' and empty($pages)) {
             // List all pages to select from.
             $pages = $this->collectPages($pages, $dbi, $args['sortby'],
-                $args['limit'], $args['exclude']);
+                                         $args['limit'], $args['exclude']);
         }
         $pagelist = new PageList_Selectable(
             $args['info'], $args['exclude'],
@@ -146,7 +145,7 @@
             $button_label = _("Yes");
             $header->pushContent(
                 HTML::p(HTML::strong(
-                    _("Are you sure you want to rename the selected pages?"))));
+                    _("Are you sure you want to rename the following pages?"))));
             $header = $this->renameForm($header, $post_args, $singlepage, true);
         } else {
             if ($singlepage === true) {

This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.