summaryrefslogtreecommitdiffstats
path: root/phpfspot_img.php
diff options
context:
space:
mode:
authorAndreas Unterkircher <unki@netshadow.at>2008-04-12 12:57:55 +0200
committerAndreas Unterkircher <unki@netshadow.at>2008-04-12 12:58:37 +0200
commit7688cbcdf666c2c538bc35cbc4efbe929a8fa9da (patch)
treef5d9ee465597ec647c119cbc5e490ca970406446 /phpfspot_img.php
parent2765fc086522b5fb9f209bdfe266e577fc65ca84 (diff)
further pimped code for phpDocumentor
Signed-off-by: Andreas Unterkircher <unki@netshadow.at>
Diffstat (limited to 'phpfspot_img.php')
-rw-r--r--phpfspot_img.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/phpfspot_img.php b/phpfspot_img.php
index 8379b83..f298b00 100644
--- a/phpfspot_img.php
+++ b/phpfspot_img.php
@@ -34,8 +34,8 @@ require_once "phpfspot.class.php";
*/
class PHPFSPOT_IMG {
- var $db;
- var $parent;
+ private $db;
+ private $parent;
/**
* PHPFSPOT_IMG class constructor
@@ -62,6 +62,8 @@ class PHPFSPOT_IMG {
* the client - in the specified width. it also try's
* to create on-the-fly missing thumbnails via PHPFSPOT
* gen_thumbs function.
+ * @param integer $idx
+ * @param integer $width
*/
public function show($idx, $width = 0)
{
@@ -126,7 +128,7 @@ class PHPFSPOT_IMG {
} // show()
-}
+} // PHPFSPOT_IMG()
if(isset($_GET['idx']) && (is_numeric($_GET['idx']) || $_GET['idx'] == 'rand')) {