aboutsummaryrefslogtreecommitdiff
path: root/src/SemanticScuttle/Service/Bookmark.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/SemanticScuttle/Service/Bookmark.php')
-rw-r--r--src/SemanticScuttle/Service/Bookmark.php11
1 files changed, 2 insertions, 9 deletions
diff --git a/src/SemanticScuttle/Service/Bookmark.php b/src/SemanticScuttle/Service/Bookmark.php
index fd88156..98259d7 100644
--- a/src/SemanticScuttle/Service/Bookmark.php
+++ b/src/SemanticScuttle/Service/Bookmark.php
@@ -1,8 +1,6 @@
<?php
-class SemanticScuttle_Service_Bookmark extends SemanticScuttle_Service
+class SemanticScuttle_Service_Bookmark extends SemanticScuttle_DbService
{
- var $tablename;
-
/**
* Returns the single service instance
*
@@ -288,7 +286,7 @@ class SemanticScuttle_Service_Bookmark extends SemanticScuttle_Service
unset($uriparts);
$b2tservice = SemanticScuttle_Service_Factory::get('Bookmark2Tag');
- $aok = !$b2tservice->attachTags(
+ $aok = $b2tservice->attachTags(
$bId, $categories, $fromApi, $extension, false, $fromImport
);
if (!$aok) {
@@ -680,11 +678,6 @@ class SemanticScuttle_Service_Bookmark extends SemanticScuttle_Service
$this->db->sql_query($query);
}
-
- // Properties
- function getTableName() { return $this->tablename; }
- function setTableName($value) { $this->tablename = $value; }
-
}
?>