Skip to content

Commit

Permalink
MDL-37224 backup-import: better handling of search button
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Hemelryk committed Feb 20, 2013
1 parent d94fc7e commit 1727057
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions backup/import.php
Expand Up @@ -12,7 +12,7 @@
// The id of the course we are importing FROM (will only be set if past first stage
$importcourseid = optional_param('importid', false, PARAM_INT);
// We just want to check if a search has been run. True if anything is there.
$coursesearch = optional_param('search', false, PARAM_BOOL);
$searchcourses = optional_param('searchcourses', false, PARAM_BOOL);
// The target method for the restore (adding or deleting)
$restoretarget = optional_param('target', backup::TARGET_CURRENT_ADDING, PARAM_INT);

Expand All @@ -38,7 +38,7 @@
$renderer = $PAGE->get_renderer('core','backup');

// Check if we already have a import course id
if ($importcourseid === false || $coursesearch) {
if ($importcourseid === false || $searchcourses) {
// Obviously not... show the selector so one can be chosen
$url = new moodle_url('/backup/import.php', array('id'=>$courseid));
$search = new import_course_search(array('url'=>$url));
Expand Down Expand Up @@ -162,4 +162,4 @@
echo $backup->display($renderer);
$backup->destroy();
unset($backup);
echo $OUTPUT->footer();
echo $OUTPUT->footer();

0 comments on commit 1727057

Please sign in to comment.