repo.or.cz
/
vsc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* slightly changed the mysql improved db driver destructor
[vsc.git]
/
image.php
blob
43a07447653464fd586294009aff5e2e118d013d
1
<
?php
2
/**
3
* the file that outputs the images
4
* incoming variables:
5
* @ themeName _GET
6
*/
7
ob_start
();
8
require
(
'config.inc.php'
);
9
require
(
LIB_PATH
.
'functions.inc.php'
);
10
11
$id
=
tsPage
::
getRequest
(
'id'
);
12
13
ob_end_clean
();
14
$a
=
new
tsImage
(
$id
);
15
$a
->
parse
();
16
echo
"
\n
"
.
'(c) HabarNam - 2006'
;
17
//echo $a->path;
18
?
>