|
From: <var...@us...> - 2022-01-06 09:41:59
|
Revision: 10844
http://sourceforge.net/p/phpwiki/code/10844
Author: vargenau
Date: 2022-01-06 09:41:57 +0000 (Thu, 06 Jan 2022)
Log Message:
-----------
lib/plugin/WikiAdminSearchReplace.php: selected pages --> following pages
Modified Paths:
--------------
trunk/lib/plugin/WikiAdminSearchReplace.php
Modified: trunk/lib/plugin/WikiAdminSearchReplace.php
===================================================================
--- trunk/lib/plugin/WikiAdminSearchReplace.php 2022-01-06 09:35:41 UTC (rev 10843)
+++ trunk/lib/plugin/WikiAdminSearchReplace.php 2022-01-06 09:41:57 UTC (rev 10844)
@@ -26,7 +26,6 @@
/**
* Usage: <<WikiAdminSearchReplace >> or called via WikiAdminSelect
* Author: Reini Urban
- *
*/
require_once 'lib/PageList.php';
@@ -110,7 +109,7 @@
// List all pages to select from.
//TODO: check for permissions and list only the allowed
$pages = $this->collectPages($pages, $dbi, $args['sortby'],
- $args['limit'], $args['exclude']);
+ $args['limit'], $args['exclude']);
}
$args['info'] = "checkbox,pagename,mtime,author";
@@ -132,7 +131,7 @@
$button_label = _("Replace");
$header->pushContent(
HTML::p(HTML::strong(
- _("Are you sure you want to replace text in the selected pages?"))));
+ _("Are you sure you want to replace text in the following pages?"))));
} else {
$pagelist = new PageList_Selectable($args['info'], $args['exclude'], $columns);
$pagelist->addPageList($pages);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|