summaryrefslogtreecommitdiffstats
path: root/phpfspot_db.php
diff options
context:
space:
mode:
authorAndreas Unterkircher <unki@netshadow.at>2008-04-12 19:33:51 +0200
committerAndreas Unterkircher <unki@netshadow.at>2008-04-12 19:33:51 +0200
commit5aacb6d86fa943c66ee94eb603887bb40e034ec5 (patch)
treed5150a93c3d82c2d3002154a446d424626d3593b /phpfspot_db.php
parentb7a43526958fc12ce7d0e42b8023db52cb25f140 (diff)
parentcd7402eecd6b5e50dcc62d8394342e6717c359e5 (diff)
Merge commit 'origin/master' into nefformat
Diffstat (limited to 'phpfspot_db.php')
-rw-r--r--phpfspot_db.php14
1 files changed, 11 insertions, 3 deletions
diff --git a/phpfspot_db.php b/phpfspot_db.php
index 807cf0f..e0cf39f 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
@@ -21,6 +22,11 @@
*
***************************************************************************/
+/**
+ * PHPFSPOT_DB class
+ *
+ * @package phpfspot
+ */
class PHPFSPOT_DB {
private $db;
@@ -37,7 +43,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 */