Artifact [93d92b7f1c]
Artifact 93d92b7f1c00f09f777094fb7eb4e0a41c5a97c4:
- File page_error.php — part of check-in [686e87487e] at 2015-03-24 18:23:10 on branch trunk — Updated stylesheet to use table-layout for #main/#sidebar split. Padding still needs work. (user: mario size: 477)
<?php /** * type: page * title: Error info * description: Generic error page * version: 0.1 * license: - * * Drop-in page for generic error message * or anything pushed in via `$error`. * */ include("template/header.php"); include("template/table_main.php"); print "<h2>Error</h2>\n"; print isset($error) ? "<p>$error</p>" : "<p>Sorry. Some problem occured (entry not accessible etc.)</p>"; include("template/table_end.php"); include("template/bottom.php"); ?>