Skip to content

Commit

Permalink
MDL-34240 - google plugins: switch to PARAM_RAW_TRIMMED
Browse files Browse the repository at this point in the history
This ensures the client credentials which are entered are trimmed
as users are finding problems with bad pastes.
  • Loading branch information
danpoltawski committed Jul 13, 2012
1 parent f2867a8 commit 8811181
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions portfolio/googledocs/lib.php
Expand Up @@ -108,7 +108,9 @@ public static function admin_config_form(&$mform) {
$mform->addElement('static', null, '', get_string('oauthinfo', 'portfolio_googledocs', $a));

$mform->addElement('text', 'clientid', get_string('clientid', 'portfolio_googledocs'));
$mform->setType('clientid', PARAM_RAW_TRIMMED);
$mform->addElement('text', 'secret', get_string('secret', 'portfolio_googledocs'));
$mform->setType('secret', PARAM_RAW_TRIMMED);

$strrequired = get_string('required');
$mform->addRule('clientid', $strrequired, 'required', null, 'client');
Expand Down
2 changes: 2 additions & 0 deletions portfolio/picasa/lib.php
Expand Up @@ -108,7 +108,9 @@ public static function admin_config_form(&$mform) {
$mform->addElement('static', null, '', get_string('oauthinfo', 'portfolio_picasa', $a));

$mform->addElement('text', 'clientid', get_string('clientid', 'portfolio_picasa'));
$mform->setType('clientid', PARAM_RAW_TRIMMED);
$mform->addElement('text', 'secret', get_string('secret', 'portfolio_picasa'));
$mform->setType('secret', PARAM_RAW_TRIMMED);

$strrequired = get_string('required');
$mform->addRule('clientid', $strrequired, 'required', null, 'client');
Expand Down
2 changes: 2 additions & 0 deletions repository/googledocs/lib.php
Expand Up @@ -119,7 +119,9 @@ public static function type_config_form($mform, $classname = 'repository') {

parent::type_config_form($mform);
$mform->addElement('text', 'clientid', get_string('clientid', 'repository_googledocs'));
$mform->setType('clientid', PARAM_RAW_TRIMMED);
$mform->addElement('text', 'secret', get_string('secret', 'repository_googledocs'));
$mform->setType('secret', PARAM_RAW_TRIMMED);

$strrequired = get_string('required');
$mform->addRule('clientid', $strrequired, 'required', null, 'client');
Expand Down
2 changes: 2 additions & 0 deletions repository/picasa/lib.php
Expand Up @@ -121,7 +121,9 @@ public static function type_config_form($mform, $classname = 'repository') {

parent::type_config_form($mform);
$mform->addElement('text', 'clientid', get_string('clientid', 'repository_picasa'));
$mform->setType('clientid', PARAM_RAW_TRIMMED);
$mform->addElement('text', 'secret', get_string('secret', 'repository_picasa'));
$mform->setType('secret', PARAM_RAW_TRIMMED);

$strrequired = get_string('required');
$mform->addRule('clientid', $strrequired, 'required', null, 'client');
Expand Down

0 comments on commit 8811181

Please sign in to comment.