mirror of
https://github.com/moodle/moodle.git
synced 2025-04-14 04:52:36 +02:00
MDL-34240 - google plugins: switch to PARAM_RAW_TRIMMED
This ensures the client credentials which are entered are trimmed as users are finding problems with bad pastes.
This commit is contained in:
parent
2cbdaa77ea
commit
999427e985
@ -108,7 +108,9 @@ class portfolio_plugin_googledocs extends portfolio_plugin_push_base {
|
||||
$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');
|
||||
|
@ -108,7 +108,9 @@ class portfolio_plugin_picasa extends portfolio_plugin_push_base {
|
||||
$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');
|
||||
|
@ -119,7 +119,9 @@ class repository_googledocs extends 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');
|
||||
|
@ -121,7 +121,9 @@ class repository_picasa extends 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');
|
||||
|
Loading…
x
Reference in New Issue
Block a user