$login_extra = addHidden('js_autodetect_results', SMPREF_JS_OFF).
$rcptaddress .
addHidden('just_logged_in', '1');
-$plugin_extra = concat_hook_function('login_form');
session_write_close();
$oTemplate->assign('org_name_str', sprintf (_("%s Login"), $org_name));
$oTemplate->assign('login_field_value', $loginname_value);
$oTemplate->assign('login_extra', $login_extra);
-$oTemplate->assign('plugin_extra', $plugin_extra);
echo '<body onLoad="squirrelmail_loginpage_onload()">'."\n";
echo '<form action="redirect.php" method="post" onSubmit="document.forms[0].js_autodetect_results.value='. SMPREF_JS_ON .'">'."\n";
* $login_extra - Some extra form fields needed by SquirrelMail
* for the login. Template designers SHOULD ALWAYS
* INCLUDE this value somewhere in the form.
- * $plugin_extra - Extra table row(s) that may be added by plugin(s).
+ * $plugin_output - An array of extra output that may be added by
+ * plugin(s).
*
* @copyright © 1999-2006 The SquirrelMail Project Team
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
<?php echo $login_extra; ?>
</td>
</tr>
- <?php echo $plugin_extra; ?>
+ <?php if (!empty($plugin_output['login_form'])) echo $plugin_output['login_form']; ?>
<tr>
<td class="sqm_loginSubmit" colspan="2">
<input type="submit" value="<?php echo _("Login"); ?>" />
* $login_extra - Some extra form fields needed by SquirrelMail
* for the login. Template designers SHOULD ALWAYS
* INCLUDE this value somewhere in the form.
- * $plugin_extra - Extra table row(s) that may be added by plugin(s).
+ * $plugin_output - An array of extra output that may be added by
+ * plugin(s).
*
* @copyright © 1999-2006 The SquirrelMail Project Team
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
<?php echo $login_extra; ?>
</td>
</tr>
- <?php echo $plugin_extra; ?>
+ <?php if (!empty($plugin_output['login_form'])) echo $plugin_output['login_form']; ?>
<tr>
<td class="loginSubmit" colspan="2">
<input type="image" src="<?php echo getIconPath($icon_theme_path, 'login_submit.png', _("Login"), _("Login")); ?>" alt="<?php echo _("Login"); ?>" />