MDL-19182 fix unknown $OUTPUT variable

This commit is contained in:
jerome
2009-09-03 07:48:10 +00:00
parent c1df9d7c51
commit 3a008973b2
+4 -1
View File
@@ -17,7 +17,10 @@
</tr>
<tr>
<td align="right"><label for="menurecaptcha"><?php print_string('auth_emailrecaptcha_key', 'auth_email') ?></label></td>
<td><?php echo $OUTPUT->select(html_select::make($yesno, 'recaptcha', $config->recaptcha, false)); ?></td>
<td><?php
global $OUTPUT;
echo $OUTPUT->select(html_select::make($yesno, 'recaptcha', $config->recaptcha, false));
?></td>
<td><?php print_string('auth_emailrecaptcha', 'auth_email') ?></td>
</tr>
<?php