|
Revision 902, 0.7 KB
(checked in by moo, 12 months ago)
|
|
improve config handling
|
-
Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
|---|
| 2 | <html xmlns="http://www.w3.org/1999/xhtml"> |
|---|
| 3 | <head> |
|---|
| 4 | <?php |
|---|
| 5 | echo <<<HEAD |
|---|
| 6 | <meta http-equiv="Content-Type" content="text/html; charset=$config[charset]" /> |
|---|
| 7 | <meta http-equiv="Content-Language" content="$config[lang]" /> |
|---|
| 8 | <script type="text/javascript" src="tablesort.js" charset="$config[charset]"></script> |
|---|
| 9 | HEAD; |
|---|
| 10 | ?> |
|---|
| 11 | |
|---|
| 12 | <link rel="stylesheet" type="text/css" href="xcache.css" /> |
|---|
| 13 | <title><?php echo sprintf(_T("XCache %s Administration"), $xcache_version); ?></title> |
|---|
| 14 | </head> |
|---|
| 15 | |
|---|
| 16 | <body> |
|---|
| 17 | <h1><?php echo sprintf(_T("XCache %s Administration"), $xcache_version); ?></h1> |
|---|