Skip to content

Commit

Permalink
"REPOSITORY/MDL-13766, allow use repository name with numbers in it"
Browse files Browse the repository at this point in the history
  • Loading branch information
dongsheng committed Jan 9, 2009
1 parent 2e1cfc6 commit 40dd60d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions admin/repository.php
Expand Up @@ -6,13 +6,13 @@

$CFG->pagepath = 'admin/managerepositories';

$edit = optional_param('edit', 0, PARAM_ALPHAEXT);
$edit = optional_param('edit', 0, PARAM_ALPHANUM);
$new = optional_param('new', '', PARAM_FORMAT);
$hide = optional_param('hide', '', PARAM_ALPHANUM);
$delete = optional_param('delete', 0, PARAM_ALPHAEXT);
$delete = optional_param('delete', 0, PARAM_ALPHANUM);
$sure = optional_param('sure', '', PARAM_ALPHA);
$move = optional_param('move', '', PARAM_ALPHAEXT);
$type = optional_param('type', '', PARAM_ALPHAEXT);
$move = optional_param('move', '', PARAM_ALPHANUM);
$type = optional_param('type', '', PARAM_ALPHANUM);

$display = true; // fall through to normal display

Expand Down

0 comments on commit 40dd60d

Please sign in to comment.