From 7617d4479b5891e905956afa3e62d26df1271bf4 Mon Sep 17 00:00:00 2001 From: Andreas Unterkircher Date: Sat, 12 Apr 2008 10:08:40 +0200 Subject: update GPL header and remove authors email address from it Signed-off-by: Andreas Unterkircher --- phpfspot_db.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'phpfspot_db.php') diff --git a/phpfspot_db.php b/phpfspot_db.php index 807cf0f..e5f1f0b 100644 --- a/phpfspot_db.php +++ b/phpfspot_db.php @@ -2,8 +2,9 @@ /*************************************************************************** * - * Copyright (c) by Andreas Unterkircher, unki@netshadow.at - * All rights reserved + * phpfspot, presents your F-Spot photo collection in Web browsers. + * + * Copyright (c) by Andreas Unterkircher * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by -- cgit v1.2.3-18-g5258 From 2765fc086522b5fb9f209bdfe266e577fc65ca84 Mon Sep 17 00:00:00 2001 From: Andreas Unterkircher Date: Sat, 12 Apr 2008 12:23:12 +0200 Subject: added phpDocumentor tags to parts of the code Signed-off-by: Andreas Unterkircher --- phpfspot_db.php | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'phpfspot_db.php') diff --git a/phpfspot_db.php b/phpfspot_db.php index e5f1f0b..83376ad 100644 --- a/phpfspot_db.php +++ b/phpfspot_db.php @@ -22,6 +22,10 @@ * ***************************************************************************/ +/** + * PHPFSPOT_DB class + * @package phpfspot + */ class PHPFSPOT_DB { private $db; -- cgit v1.2.3-18-g5258 From 7688cbcdf666c2c538bc35cbc4efbe929a8fa9da Mon Sep 17 00:00:00 2001 From: Andreas Unterkircher Date: Sat, 12 Apr 2008 12:57:55 +0200 Subject: further pimped code for phpDocumentor Signed-off-by: Andreas Unterkircher --- phpfspot_db.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'phpfspot_db.php') diff --git a/phpfspot_db.php b/phpfspot_db.php index 83376ad..90fdb8c 100644 --- a/phpfspot_db.php +++ b/phpfspot_db.php @@ -42,7 +42,9 @@ class PHPFSPOT_DB { */ public function __construct($parent, $db_path) { - $this->parent = $parent; + global $phpfspot; + + $this->parent = $phpfspot; $this->db_path = $db_path; /* We are starting disconnected */ -- cgit v1.2.3-18-g5258 From 55677896eb839e20542440e51c5737a318240dab Mon Sep 17 00:00:00 2001 From: Andreas Unterkircher Date: Sat, 12 Apr 2008 18:40:20 +0200 Subject: update documentation Signed-off-by: Andreas Unterkircher --- phpfspot_db.php | 1 + 1 file changed, 1 insertion(+) (limited to 'phpfspot_db.php') diff --git a/phpfspot_db.php b/phpfspot_db.php index 90fdb8c..e0cf39f 100644 --- a/phpfspot_db.php +++ b/phpfspot_db.php @@ -24,6 +24,7 @@ /** * PHPFSPOT_DB class + * * @package phpfspot */ class PHPFSPOT_DB { -- cgit v1.2.3-18-g5258