Skip to content

Commit

Permalink
Merge branch 'MDL-30843_b_m21' of git://github.com/rwijaya/moodle int…
Browse files Browse the repository at this point in the history
…o MOODLE_21_STABLE
  • Loading branch information
Sam Hemelryk committed Apr 9, 2012
2 parents 56e270e + 0add004 commit ea71709
Show file tree
Hide file tree
Showing 93 changed files with 339 additions and 193 deletions.
2 changes: 2 additions & 0 deletions admin/filters.php
Expand Up @@ -242,6 +242,7 @@ function get_table_row($filterinfo, $isfirstrow, $islastactive, $applytostrings)


// Disable/off/on // Disable/off/on
$select = new single_select(filters_action_url($filter, 'setstate'), 'newstate', $activechoices, $filterinfo->active, null, 'active' . basename($filter)); $select = new single_select(filters_action_url($filter, 'setstate'), 'newstate', $activechoices, $filterinfo->active, null, 'active' . basename($filter));
$select->set_label(get_accesshide(get_string('isactive', 'filters')));
$row[] = $OUTPUT->render($select); $row[] = $OUTPUT->render($select);


// Re-order // Re-order
Expand All @@ -263,6 +264,7 @@ function get_table_row($filterinfo, $isfirstrow, $islastactive, $applytostrings)


// Apply to strings. // Apply to strings.
$select = new single_select(filters_action_url($filter, 'setapplyto'), 'stringstoo', $applytochoices, $applytostrings, null, 'applyto' . basename($filter)); $select = new single_select(filters_action_url($filter, 'setapplyto'), 'stringstoo', $applytochoices, $applytostrings, null, 'applyto' . basename($filter));
$select->set_label(get_accesshide(get_string('applyto', 'filters')));
$select->disabled = $filterinfo->active == TEXTFILTER_DISABLED; $select->disabled = $filterinfo->active == TEXTFILTER_DISABLED;
$row[] = $OUTPUT->render($select); $row[] = $OUTPUT->render($select);


Expand Down
7 changes: 4 additions & 3 deletions admin/mnet/access_control.php
Expand Up @@ -203,17 +203,18 @@
if (!empty($formerror['username'])) { if (!empty($formerror['username'])) {
echo '<span class="error"> * </span>'; echo '<span class="error"> * </span>';
} }
echo '<input type="text" name="username" size="20" maxlength="100" />'; echo html_writer::label(get_string('username'), 'menuusername', false, array('class' =>'accesshide'));
echo '<input id="menuusername" type="text" name="username" size="20" maxlength="100" />';


// choose a remote host // choose a remote host
echo " " . get_string('remotehost', 'mnet') . ":\n"; echo html_writer::label(get_string('remotehost', 'mnet'), 'menumnet_host_id');
if (!empty($formerror['mnet_host_id'])) { if (!empty($formerror['mnet_host_id'])) {
echo '<span class="error"> * </span>'; echo '<span class="error"> * </span>';
} }
echo html_writer::select($mnethosts, 'mnet_host_id'); echo html_writer::select($mnethosts, 'mnet_host_id');


// choose an access level // choose an access level
echo " " . get_string('accesslevel', 'mnet') . ":\n"; echo html_writer::label(get_string('accesslevel', 'mnet'), 'menuaccessctrl');
if (!empty($formerror['accessctrl'])) { if (!empty($formerror['accessctrl'])) {
echo '<span class="error"> * </span>'; echo '<span class="error"> * </span>';
} }
Expand Down
1 change: 1 addition & 0 deletions admin/portfolio.php
Expand Up @@ -197,6 +197,7 @@ function portfolio_action_url($portfolio) {
$currentaction = 'hide'; $currentaction = 'hide';
} }
$select = new single_select(portfolio_action_url($pluginid, 'pf'), 'action', $actionchoicesforexisting, $currentaction, null, 'applyto' . $pluginid); $select = new single_select(portfolio_action_url($pluginid, 'pf'), 'action', $actionchoicesforexisting, $currentaction, null, 'applyto' . $pluginid);
$select->set_label(get_accesshide(get_string('portfolio', 'portfolio')));
$table->data[] = array($pluginname, $OUTPUT->render($select), $settings); $table->data[] = array($pluginname, $OUTPUT->render($select), $settings);
} }
if (!in_array($plugin, $usedplugins)) { if (!in_array($plugin, $usedplugins)) {
Expand Down
3 changes: 2 additions & 1 deletion admin/repository.php
Expand Up @@ -305,7 +305,7 @@ function repository_action_url($repository) {
} }


$select = new single_select(repository_action_url($typename, 'repos'), 'action', $actionchoicesforexisting, $currentaction, null, 'applyto' . basename($typename)); $select = new single_select(repository_action_url($typename, 'repos'), 'action', $actionchoicesforexisting, $currentaction, null, 'applyto' . basename($typename));

$select->set_label(get_accesshide(get_string('action')));
// Display up/down link // Display up/down link
$updown = ''; $updown = '';
$spacer = $OUTPUT->spacer(array('height'=>15, 'width'=>15)); // should be done with CSS instead $spacer = $OUTPUT->spacer(array('height'=>15, 'width'=>15)); // should be done with CSS instead
Expand Down Expand Up @@ -342,6 +342,7 @@ function repository_action_url($repository) {
// Check that it has not already been listed // Check that it has not already been listed
if (!in_array($plugin, $alreadyplugins)) { if (!in_array($plugin, $alreadyplugins)) {
$select = new single_select(repository_action_url($plugin, 'repos'), 'action', $actionchoicesfornew, 'delete', null, 'applyto' . basename($plugin)); $select = new single_select(repository_action_url($plugin, 'repos'), 'action', $actionchoicesfornew, 'delete', null, 'applyto' . basename($plugin));
$select->set_label(get_accesshide(get_string('action')));
$table->data[] = array(get_string('pluginname', 'repository_'.$plugin), $OUTPUT->render($select), '', ''); $table->data[] = array(get_string('pluginname', 'repository_'.$plugin), $OUTPUT->render($select), '', '');
} }
} }
Expand Down
5 changes: 4 additions & 1 deletion admin/roles/lib.php
Expand Up @@ -721,7 +721,10 @@ protected function get_archetype_field($id) {
foreach(get_role_archetypes() as $type) { foreach(get_role_archetypes() as $type) {
$options[$type] = get_string('archetype'.$type, 'role'); $options[$type] = get_string('archetype'.$type, 'role');
} }
return html_writer::select($options, 'archetype', $this->role->archetype, false);
$return = html_writer::label(get_string('archetype'.$type, 'role'), 'menuarchetype', false, array('class' => 'accesshide'));
$return .= html_writer::select($options, 'archetype', $this->role->archetype, false);
return $return;
} }


protected function get_assignable_levels_control() { protected function get_assignable_levels_control() {
Expand Down
2 changes: 1 addition & 1 deletion admin/timezone.php
Expand Up @@ -42,7 +42,7 @@
$timezones = get_list_of_timezones(); $timezones = get_list_of_timezones();


echo '<center><form action="timezone.php" method="post">'; echo '<center><form action="timezone.php" method="post">';
echo "$strusers ($strall): "; echo html_writer::label($strusers . ' (' . $strall . '): ', 'menuzone');
echo html_writer::select($timezones, "zone", $current, array('99'=>get_string("serverlocaltime"))); echo html_writer::select($timezones, "zone", $current, array('99'=>get_string("serverlocaltime")));
echo "<input type=\"hidden\" name=\"sesskey\" value=\"".sesskey()."\" />"; echo "<input type=\"hidden\" name=\"sesskey\" value=\"".sesskey()."\" />";
echo '<input type="submit" value="'.s($strsavechanges).'" />'; echo '<input type="submit" value="'.s($strsavechanges).'" />';
Expand Down
28 changes: 14 additions & 14 deletions auth/cas/config.html
Expand Up @@ -94,9 +94,9 @@ <h4><?php print_string('auth_cas_server_settings', 'auth_cas') ?></h4>
</td> </td>
</tr> </tr>
<tr valign="top" class="required"> <tr valign="top" class="required">
<td align="right"><?php print_string('auth_cas_hostname_key', 'auth_cas') ?>:</td> <td align="right"><label for="hostname"><?php print_string('auth_cas_hostname_key', 'auth_cas') ?>: </label></td>
<td> <td>
<input name="hostname" type="text" size="30" value="<?php echo $config->hostname ?>" /> <input name="hostname" id="hostname" type="text" size="30" value="<?php echo $config->hostname ?>" />
<?php if (isset($err['hostname'])) { echo $OUTPUT->error_text($err['hostname']); } ?> <?php if (isset($err['hostname'])) { echo $OUTPUT->error_text($err['hostname']); } ?>
</td> </td>
<td> <td>
Expand All @@ -105,10 +105,10 @@ <h4><?php print_string('auth_cas_server_settings', 'auth_cas') ?></h4>
</tr> </tr>
<tr valign="top" class="required"> <tr valign="top" class="required">
<td align="right"> <td align="right">
<?php print_string('auth_cas_baseuri_key', 'auth_cas') ?>: <label for="baseuri"><?php print_string('auth_cas_baseuri_key', 'auth_cas') ?>: </label>
</td> </td>
<td> <td>
<input name="baseuri" type="text" size="30" value="<?php echo $config->baseuri ?>" /> <input name="baseuri" id="baseuri" type="text" size="30" value="<?php echo $config->baseuri ?>" />
<?php if (isset($err['baseuri'])) { echo $OUTPUT->error_text($err['baseuri']); } ?> <?php if (isset($err['baseuri'])) { echo $OUTPUT->error_text($err['baseuri']); } ?>
</td> </td>
<td> <td>
Expand All @@ -117,10 +117,10 @@ <h4><?php print_string('auth_cas_server_settings', 'auth_cas') ?></h4>
</tr> </tr>
<tr valign="top" class="required"> <tr valign="top" class="required">
<td align="right"> <td align="right">
<?php print_string('auth_cas_port_key', 'auth_cas') ?>: <label for="port"><?php print_string('auth_cas_port_key', 'auth_cas') ?>: </label>
</td> </td>
<td> <td>
<input name="port" type="text" size="30" value="<?php echo $config->port ?>" /> <input name="port" id="port" type="text" size="30" value="<?php echo $config->port ?>" />
<?php if (isset($err['port'])) { echo $OUTPUT->error_text($err['port']); } ?> <?php if (isset($err['port'])) { echo $OUTPUT->error_text($err['port']); } ?>
</td> </td>
<td> <td>
Expand All @@ -129,7 +129,7 @@ <h4><?php print_string('auth_cas_server_settings', 'auth_cas') ?></h4>
</tr> </tr>
<tr valign="top" class="required"> <tr valign="top" class="required">
<td align="right"> <td align="right">
<?php print_string('auth_cas_casversion', 'auth_cas') ?>: <?php echo html_writer::label(get_string('auth_cas_casversion', 'auth_cas'), 'menucasversion'); ?>:
</td> </td>
<td> <td>
<?php <?php
Expand All @@ -145,7 +145,7 @@ <h4><?php print_string('auth_cas_server_settings', 'auth_cas') ?></h4>
</td> </td>
</tr> </tr>
<tr valign="top" class="required"> <tr valign="top" class="required">
<td align="right"><?php print_string('auth_cas_language_key', 'auth_cas') ?>:</td> <td align="right"><?php echo html_writer::label(get_string('auth_cas_language_key', 'auth_cas'), 'menulanguage'); ?>:</td>
<td> <td>
<?php echo html_writer::select($CASLANGUAGES, 'language', $config->language, false); ?> <?php echo html_writer::select($CASLANGUAGES, 'language', $config->language, false); ?>
</td> </td>
Expand All @@ -155,7 +155,7 @@ <h4><?php print_string('auth_cas_server_settings', 'auth_cas') ?></h4>
</tr> </tr>
<tr valign="top" class="required"> <tr valign="top" class="required">
<td align="right"> <td align="right">
<?php print_string('auth_cas_proxycas_key', 'auth_cas') ?>: <?php echo html_writer::label(get_string('auth_cas_proxycas_key', 'auth_cas'), 'menuproxycas'); ?>:
</td> </td>
<td> <td>
<?php echo html_writer::select($yesno, 'proxycas', $config->proxycas, false); ?> <?php echo html_writer::select($yesno, 'proxycas', $config->proxycas, false); ?>
Expand All @@ -165,7 +165,7 @@ <h4><?php print_string('auth_cas_server_settings', 'auth_cas') ?></h4>
</td> </td>
</tr> </tr>
<tr valign="top" class="required"> <tr valign="top" class="required">
<td align="right"><?php print_string('auth_cas_logoutcas_key', 'auth_cas') ?>:</td> <td align="right"><?php echo html_writer::label(get_string('auth_cas_logoutcas_key', 'auth_cas'), 'menulogoutcas'); ?>:</td>
<td> <td>
<?php echo html_writer::select($yesno, 'logoutcas', $config->logoutcas, false); ?> <?php echo html_writer::select($yesno, 'logoutcas', $config->logoutcas, false); ?>
</td> </td>
Expand All @@ -174,7 +174,7 @@ <h4><?php print_string('auth_cas_server_settings', 'auth_cas') ?></h4>
</td> </td>
</tr> </tr>
<tr valign="top" class="required"> <tr valign="top" class="required">
<td align="right"><?php print_string('auth_cas_multiauth_key', 'auth_cas') ?>:</td> <td align="right"><?php echo html_writer::label(get_string('auth_cas_multiauth_key', 'auth_cas'), 'menumultiauth'); ?>:</td>
<td> <td>
<?php echo html_writer::select($yesno, 'multiauth', $config->multiauth, false); ?> <?php echo html_writer::select($yesno, 'multiauth', $config->multiauth, false); ?>
</td> </td>
Expand All @@ -183,7 +183,7 @@ <h4><?php print_string('auth_cas_server_settings', 'auth_cas') ?></h4>
</td> </td>
</tr> </tr>
<tr valign="top" class="required"> <tr valign="top" class="required">
<td align="right"><?php print_string('auth_cas_certificate_check_key', 'auth_cas') ?>:</td> <td align="right"><?php echo html_writer::label(get_string('auth_cas_certificate_check_key', 'auth_cas'), 'menucertificate_check'); ?>:</td>
<td> <td>
<?php echo html_writer::select($yesno, 'certificate_check', $config->certificate_check, false); ?> <?php echo html_writer::select($yesno, 'certificate_check', $config->certificate_check, false); ?>
</td> </td>
Expand All @@ -192,7 +192,7 @@ <h4><?php print_string('auth_cas_server_settings', 'auth_cas') ?></h4>
</td> </td>
</tr> </tr>
<tr valign="top" class="required"> <tr valign="top" class="required">
<td align="right"><?php print_string('auth_cas_certificate_path_key', 'auth_cas') ?>:</td> <td align="right"><label for="certificate_path"><?php print_string('auth_cas_certificate_path_key', 'auth_cas') ?>: </label></td>
<td> <td>
<input name="certificate_path" id="certificate_path" type="text" size="30" value="<?php echo $config->certificate_path ?>" /> <input name="certificate_path" id="certificate_path" type="text" size="30" value="<?php echo $config->certificate_path ?>" />
<?php if (isset($err['certificate_path'])) echo $OUTPUT->error_text($err['certificate_path']); ?> <?php if (isset($err['certificate_path'])) echo $OUTPUT->error_text($err['certificate_path']); ?>
Expand All @@ -219,7 +219,7 @@ <h4><?php print_string('auth_ldap_server_settings', 'auth_ldap') ?></h4>
</td> </td>
</tr> </tr>
<tr valign="top" class="required"> <tr valign="top" class="required">
<td align="right"><label for="menuversion"><?php print_string('auth_ldap_version_key', 'auth_ldap') ?></label></td> <td align="right"><label for="menuldap_version"><?php print_string('auth_ldap_version_key', 'auth_ldap') ?></label></td>
<td> <td>
<?php <?php
$versions = array(); $versions = array();
Expand Down
16 changes: 8 additions & 8 deletions auth/fc/config.html
Expand Up @@ -27,9 +27,9 @@
<table cellspacing="0" cellpadding="5" border="0"> <table cellspacing="0" cellpadding="5" border="0">


<tr valign="top" class="required"> <tr valign="top" class="required">
<td align="right"><?php print_string("auth_fchost_key", "auth_fc") ?>:</td> <td align="right"><label for="host"><?php print_string("auth_fchost_key", "auth_fc") ?>:</label></td>
<td> <td>
<input name="host" type="text" size="30" value="<?php echo $config->host?>" /> <input name="host" id="host" type="text" size="30" value="<?php echo $config->host?>" />
<?php if (isset($err["host"])) echo $OUTPUT->error_text($err["host"]); ?> <?php if (isset($err["host"])) echo $OUTPUT->error_text($err["host"]); ?>
</td> </td>
<td> <td>
Expand All @@ -38,9 +38,9 @@
</tr> </tr>


<tr valign="top" class="required"> <tr valign="top" class="required">
<td align="right"><?php print_string("auth_fcfppport_key", "auth_fc") ?>:</td> <td align="right"><label for="fppport"><?php print_string("auth_fcfppport_key", "auth_fc") ?>: </label></td>
<td> <td>
<input name="fppport" type="text" size="30" value="<?php echo $config->fppport?>" /> <input name="fppport" id="fppport" type="text" size="30" value="<?php echo $config->fppport?>" />
<?php if (isset($err["fppport"])) echo $OUTPUT->error_text($err["host"]); ?> <?php if (isset($err["fppport"])) echo $OUTPUT->error_text($err["host"]); ?>
</td> </td>
<td> <td>
Expand Down Expand Up @@ -70,9 +70,9 @@
</tr> </tr>


<tr valign="top" class="required"> <tr valign="top" class="required">
<td align="right"><?php print_string("auth_fccreators_key", "auth_fc") ?>:</td> <td align="right"><label for="creators"><?php print_string("auth_fccreators_key", "auth_fc") ?>: </label></td>
<td> <td>
<input name="creators" type="text" size="30" value="<?php echo $config->creators?>" /> <input name="creators" id="creators" type="text" size="30" value="<?php echo $config->creators?>" />
<?php if (isset($err["creators"])) echo $OUTPUT->error_text($err["creators"]); ?> <?php if (isset($err["creators"])) echo $OUTPUT->error_text($err["creators"]); ?>
</td> </td>
<td> <td>
Expand All @@ -81,9 +81,9 @@
</tr> </tr>


<tr valign="top"> <tr valign="top">
<td align="right"><?php print_string('auth_fcchangepasswordurl', 'auth_fc') ?>: </td> <td align="right"><label for="changepasswordurl"><?php print_string('auth_fcchangepasswordurl', 'auth_fc') ?>: </label></td>
<td> <td>
<input name="changepasswordurl" type="text" value="<?php echo $config->changepasswordurl ?>" /> <input name="changepasswordurl" id="changepasswordurl" type="text" value="<?php echo $config->changepasswordurl ?>" />
<?php <?php


if (isset($err['changepasswordurl'])) { if (isset($err['changepasswordurl'])) {
Expand Down
14 changes: 7 additions & 7 deletions auth/imap/config.html
Expand Up @@ -18,9 +18,9 @@
<table cellspacing="0" cellpadding="5" border="0"> <table cellspacing="0" cellpadding="5" border="0">


<tr valign="top" class="required"> <tr valign="top" class="required">
<td align="right"><?php print_string('auth_imaphost_key', 'auth_imap') ?>: </td> <td align="right"><label for="host"><?php print_string('auth_imaphost_key', 'auth_imap') ?>: </label></td>
<td> <td>
<input name="host" type="text" size="30" value="<?php echo $config->host ?>" /> <input name="host" id="host" type="text" size="30" value="<?php echo $config->host ?>" />
<?php <?php


if (isset($err['host'])) { if (isset($err['host'])) {
Expand All @@ -40,7 +40,7 @@
</tr> </tr>


<tr valign="top" class="required"> <tr valign="top" class="required">
<td align="right"><?php print_string('auth_imaptype_key', 'auth_imap') ?>: </td> <td align="right"><?php echo html_writer::label(get_string('auth_imaptype_key', 'auth_imap'), 'menutype'); ?>: </td>
<td> <td>
<?php <?php


Expand All @@ -56,9 +56,9 @@
</tr> </tr>


<tr valign="top" class="required"> <tr valign="top" class="required">
<td align="right"><?php print_string('auth_imapport_key', 'auth_imap') ?>: </td> <td align="right"><label for="port"><?php print_string('auth_imapport_key', 'auth_imap') ?>: </label></td>
<td> <td>
<input name="port" type="text" size="6" value="<?php echo $config->port ?>" /> <input name="port" id="port" type="text" size="6" value="<?php echo $config->port ?>" />
<?php <?php


if (isset($err['port'])) { if (isset($err['port'])) {
Expand All @@ -71,9 +71,9 @@
</tr> </tr>


<tr valign="top"> <tr valign="top">
<td align="right"><?php print_string('auth_imapchangepasswordurl_key', 'auth_imap') ?>: </td> <td align="right"><label for="changepasswordurl"><?php print_string('auth_imapchangepasswordurl_key', 'auth_imap') ?>: </label></td>
<td> <td>
<input name="changepasswordurl" type="text" value="<?php echo $config->changepasswordurl ?>" /> <input name="changepasswordurl" id="changepasswordurl" type="text" value="<?php echo $config->changepasswordurl ?>" />
<?php <?php


if (isset($err['changepasswordurl'])) { if (isset($err['changepasswordurl'])) {
Expand Down
2 changes: 1 addition & 1 deletion auth/ldap/config.html
Expand Up @@ -118,7 +118,7 @@ <h4><?php print_string('auth_ldap_server_settings', 'auth_ldap') ?></h4>
</tr> </tr>
<tr valign="top" class="required"> <tr valign="top" class="required">
<td align="right"> <td align="right">
<label for="menuversion"><?php print_string('auth_ldap_version_key', 'auth_ldap') ?></label> <label for="menuldap_version"><?php print_string('auth_ldap_version_key', 'auth_ldap') ?></label>
</td> </td>
<td> <td>
<?php <?php
Expand Down
6 changes: 3 additions & 3 deletions auth/mnet/config.html
Expand Up @@ -22,9 +22,9 @@
<table cellspacing="0" cellpadding="5"> <table cellspacing="0" cellpadding="5">


<tr valign="top" class="required"> <tr valign="top" class="required">
<td align="right"><?php print_string('rpc_negotiation_timeout', 'auth_mnet'); ?>: </td> <td align="right"><label for="rpc_negotiation_timeout"><?php print_string('rpc_negotiation_timeout', 'auth_mnet'); ?>: </label></td>
<td> <td>
<input name="rpc_negotiation_timeout" type="text" size="5" value="<?php echo $config->rpc_negotiation_timeout ?>" /> <input name="rpc_negotiation_timeout" id="rpc_negotiation_timeout" type="text" size="5" value="<?php echo $config->rpc_negotiation_timeout ?>" />
<?php <?php


if (isset($err['rpc_negotiation_timeout'])) { if (isset($err['rpc_negotiation_timeout'])) {
Expand All @@ -45,7 +45,7 @@
<?php /* <?php /*
See MDL-21327 for why this is commented out See MDL-21327 for why this is commented out
<tr valign="top" class="required"> <tr valign="top" class="required">
<td align="right"><?php print_string('auto_add_remote_users', 'auth_mnet'); ?>: </td> <td align="right"><?php echo html_writer::label(get_string('auto_add_remote_users', 'auth_mnet'), 'menuauto_add_remote_users'); ?>: </td>
<td> <td>
<?php <?php


Expand Down
12 changes: 6 additions & 6 deletions auth/nntp/config.html
Expand Up @@ -15,9 +15,9 @@
<table cellspacing="0" cellpadding="5" border="0"> <table cellspacing="0" cellpadding="5" border="0">


<tr valign="top" class="required"> <tr valign="top" class="required">
<td align="right"><?php print_string('auth_nntphost_key', 'auth_nntp') ?>: </td> <td align="right"><label for="host"><?php print_string('auth_nntphost_key', 'auth_nntp') ?>: </label></td>
<td> <td>
<input name="host" type="text" size="30" value="<?php echo $config->host ?>" /> <input name="host" id="host" type="text" size="30" value="<?php echo $config->host ?>" />
<?php <?php


if (isset($err["host"])) { if (isset($err["host"])) {
Expand All @@ -37,9 +37,9 @@
</tr> </tr>


<tr valign="top" class="required"> <tr valign="top" class="required">
<td align="right"><?php print_string('auth_nntpport_key', 'auth_nntp') ?>: </td> <td align="right"><label for="port"><?php print_string('auth_nntpport_key', 'auth_nntp') ?>: </label></td>
<td> <td>
<input name="port" type="text" size="6" value="<?php echo $config->port ?>" /> <input name="port" id="port" type="text" size="6" value="<?php echo $config->port ?>" />
<?php <?php


if (isset($err["port"])) { if (isset($err["port"])) {
Expand All @@ -52,9 +52,9 @@
</tr> </tr>


<tr valign="top"> <tr valign="top">
<td align="right"><?php print_string('auth_nntpchangepasswordurl_key', 'auth_nntp') ?>: </td> <td align="right"><label for="changepasswordurl"><?php print_string('auth_nntpchangepasswordurl_key', 'auth_nntp') ?>: </label></td>
<td> <td>
<input name="changepasswordurl" type="text" value="<?php echo $config->changepasswordurl ?>" /> <input name="changepasswordurl" id="changepasswordurl" type="text" value="<?php echo $config->changepasswordurl ?>" />
<?php <?php


if (isset($err['changepasswordurl'])) { if (isset($err['changepasswordurl'])) {
Expand Down

0 comments on commit ea71709

Please sign in to comment.