mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 00:46:50 +02:00
parameter cleaup - round 1
This commit is contained in:
parent
1452f9e11b
commit
1c47adc540
14 changed files with 43 additions and 48 deletions
|
@ -1,11 +1,11 @@
|
|||
<?PHP // $Id$
|
||||
// dbperformance.php - shows latest ADOdb stats for the current server
|
||||
|
||||
require_once("../config.php");
|
||||
require_once('../config.php');
|
||||
|
||||
$topframe = optional_param( 'topframe', '', PARAM_ALPHA);
|
||||
$bottomframe = optional_param( 'bottomframe', '', PARAM_ALPHA);
|
||||
$do = optional_param( 'do','',PARAM_ALPHA);
|
||||
$topframe = optional_param('topframe', 0, PARAM_BOOL);
|
||||
$bottomframe = optional_param('bottomframe', 0, PARAM_BOOL);
|
||||
$do = optional_param('do', '', PARAM_ALPHA);
|
||||
|
||||
require_login();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue