Menu

[r9]: / general / error.php  Maximize  Restore  History

Download this file

63 lines (53 with data), 1.6 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php
/*
** Application name: phpCollab
** Last Edit page: 2003-10-23
** Path by root: ../general/error.php
** Authors: Ceam / Fullo
**
** =============================================================================
**
** phpCollab - Project Managment
**
** -----------------------------------------------------------------------------
** Please refer to license, copyright, and credits in README.TXT
**
** -----------------------------------------------------------------------------
** FILE: error.php
**
** DESC: Screen: show errors page
**
** HISTORY:
** 2003-10-23 - added new document info
** -----------------------------------------------------------------------------
** TO-DO:
**
** =============================================================================
*/
include("../includes/settings.php");
$blank = "true";
include('../themes/'.THEME.'/header.php');
include("../themes/".THEME."/block.class.php");
$blockPage = new block();
$blockPage->openBreadcrumbs();
$blockPage->itemBreadcrumbs("&nbsp;");
$blockPage->closeBreadcrumbs();
$block1 = new block();
$block1->heading($setTitle . " : Error");
$block1->openContent();
if ($databaseType == "mysql") {
$block1->contentTitle("MySql Error");
}
if ($databaseType == "sqlserver") {
$block1->contentTitle("Sql Server Error");
}
if ($type == "myserver") {
$block1->contentRow("",$strings["error_server"]);
}
if ($type == "mydatabase") {
$block1->contentRow("",$strings["error_database"]);
}
$block1->closeContent();
$footerDev = "false";
include('../themes/'.THEME.'/footer.php');
?>
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.