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
* last commit of a long day :)
[vsc.git]
/
image.php
blob
e54b9fe36f5ef17460ada2c62bd97ed47140721a
1
<
?php
2
/**
3
* the file that outputs the images
4
* incoming variables:
5
* @ themeName _GET
6
*/
7
ob_start
();
8
require_once
(
'config.inc.php'
);
9
require_once
(
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
?
>