if ($db_error == $db_duplicate_error_code)
{
- display_error(_("The entered information is a duplicate. Please go back and enter different values.")
- . "<br><a href='javascript:history.go(-1)'>" . _("Back") . "</a>", true);
+ display_error(_("The entered information is a duplicate. Please go back and enter different values."));
return true;
}
div_end(); // _page_body section
include($path_to_root . "/includes/page/footer.inc");
- $Ajax->run();
page_footer($no_menu, $is_index);
}
function output_html($text)
{
- global $before_box;
+ global $before_box, $Ajax;
+ $Ajax->run();
return in_ajax() ? fmt_errors() : ($before_box.fmt_errors().$text);
}