function system_display_completed_db_updates
Search API
7.x system.module | system_display_completed_db_updates() |
6.x system.module | system_display_completed_db_updates() |
4.x system.module | system_display_completed_db_updates() |
5.x system.module | system_display_completed_db_updates() |
Once db updates are run, display contents of this page.
File
- modules/
system/ system.module, line 975
Code
function system_display_completed_db_updates() {
$rtn = "";
$rtn .= t("Database updates have been completed. If you do not see
any errors displayed, it means everything was run correctly.");
$rtn .= "<br><br>
<ul>";
$rtn .= "<li>" . l(t("Return to Admin"), "admin-tools/admin") . "</li>
<li>" . l(t("Return to Modules page"), "admin/config/modules") . "</li>
</ul>";
return $rtn;
}