Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue 43 - adjust the settings #48

Open
wants to merge 2 commits into
base: MOODLE_401_STABLE
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lang/en/tool_advancedreplace.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
$string['filespageheader'] = 'Search for text in Moodle files';
$string['newsearch'] = 'New search';
$string['searchdeleted'] = 'The selected search was deleted.';
$string['searchpagename'] = 'Advanced replace search';
$string['searchpagename'] = 'Advanced database search';
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we still need the 'advanced' at all for the page names? They are already under the heading so just file search and database search should be good.

$string['searchpageheader'] = 'Search for text stored in the DB';
$string['searchqueued'] = 'Your search has been queued as an adhoc task.';
$string['searchcopy'] = 'Search options have been copied from a previous search. This will be treated as a new search.';
Expand Down
2 changes: 1 addition & 1 deletion settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
);

$ADMIN->add(
'tools',
'advancereplacefolder',
new admin_externalpage(
'tool_advancedreplace_files',
get_string('filespagename', 'tool_advancedreplace'),
Expand Down
4 changes: 2 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
defined('MOODLE_INTERNAL') || die();


$plugin->version = 2024101600; // The current plugin version (Date: YYYYMMDDXX).
$plugin->release = 2024101600;
$plugin->version = 2024101700; // The current plugin version (Date: YYYYMMDDXX).
$plugin->release = 2024101700;
$plugin->requires = 2020110900; // Requires this Moodle version.
$plugin->component = 'tool_advancedreplace';
$plugin->maturity = MATURITY_STABLE;
Expand Down
Loading