Skip to content

Commit

Permalink
Merge branch 'MDL-56634-master' of git://github.com/ankitagarwal/moodle
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewnicols committed Nov 2, 2016
2 parents 93dfcf3 + 9d72acb commit e84e836
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion auth/email/classes/external.php
Expand Up @@ -169,7 +169,7 @@ public static function get_signup_settings_returns() {
),
'recaptchapublickey' => new external_value(PARAM_RAW, 'Recaptcha public key', VALUE_OPTIONAL),
'recaptchachallengehash' => new external_value(PARAM_RAW, 'Recaptcha challenge hash', VALUE_OPTIONAL),
'recaptchachallengeimage' => new external_value(PARAM_URL, 'Recaptcha challenge <noscript> image', VALUE_OPTIONAL),
'recaptchachallengeimage' => new external_value(PARAM_URL, 'Recaptcha challenge noscript image', VALUE_OPTIONAL),
'recaptchachallengejs' => new external_value(PARAM_URL, 'Recaptcha challenge js url', VALUE_OPTIONAL),
'warnings' => new external_warnings(),
)
Expand Down
6 changes: 3 additions & 3 deletions webservice/renderer.php
Expand Up @@ -410,7 +410,7 @@ public function detailed_description_html($params) {
$paramdesc .= html_writer::start_tag('i', array());
$paramdesc .= "//";

$paramdesc .= $params->desc;
$paramdesc .= s($params->desc);

$paramdesc .= html_writer::end_tag('i');

Expand Down Expand Up @@ -685,7 +685,7 @@ public function documentation_html($functions, $printableformat, $activatedproto
$documentationhtml .= html_writer::start_tag('div',
array('style' => 'border:solid 1px #DEDEDE;background:#E2E0E0;
color:#222222;padding:4px;'));
$documentationhtml .= $description->description;
$documentationhtml .= s($description->description);
$documentationhtml .= html_writer::end_tag('div');
$documentationhtml .= $br . $br;

Expand Down Expand Up @@ -719,7 +719,7 @@ public function documentation_html($functions, $printableformat, $activatedproto
$documentationhtml .= " (" . $required . ")"; // argument is required or optional ?
$documentationhtml .= $br;
$documentationhtml .= "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"
. $paramdesc->desc; // argument description
. s($paramdesc->desc); // Argument description.
$documentationhtml .= $br . $br;
// general structure of the argument
$documentationhtml .= $this->colored_box_with_pre_tag(
Expand Down

0 comments on commit e84e836

Please sign in to comment.