diff options
author | Christian Weiske <cweiske@cweiske.de> | 2011-08-05 19:48:46 +0200 |
---|---|---|
committer | Christian Weiske <cweiske@cweiske.de> | 2011-08-05 19:48:46 +0200 |
commit | 5571ec0a4dc9b2297dc6e3f65fc1bbf3dfc5004b (patch) | |
tree | 98be842119c0db31e6528125fba1df8e7b84418c /scripts | |
parent | 9c18fe1cc7e22077763baa545144cc01d5d94eab (diff) | |
download | semanticscuttle-5571ec0a4dc9b2297dc6e3f65fc1bbf3dfc5004b.tar.gz semanticscuttle-5571ec0a4dc9b2297dc6e3f65fc1bbf3dfc5004b.tar.bz2 |
script to fix unfiled bugs (for bug #3386178)
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/fix-unfiled-tags.php | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/scripts/fix-unfiled-tags.php b/scripts/fix-unfiled-tags.php new file mode 100644 index 0000000..8a5238e --- /dev/null +++ b/scripts/fix-unfiled-tags.php @@ -0,0 +1,35 @@ +<?php +/** + * SemanticScuttle from approximately 0.94 up to 0.98.2, system:unfiled + * tags were not created when adding new bookmarks with the web interface. + * + * This script adds system:unfiled tags for all bookmarks that have no + * tags. + */ +require_once dirname(__FILE__) . '/../src/SemanticScuttle/header-standalone.php'; + +//needed to load the database object +$bt = SemanticScuttle_Service_Factory::get('Bookmark2Tag'); +$db = SemanticScuttle_Service_Factory::getDb(); + +$query = <<<SQL +SELECT b.bId +FROM sc_bookmarks AS b + LEFT JOIN sc_bookmarks2tags AS bt ON b.bId = bt.bId +WHERE bt.bId IS NULL +SQL; + +if (!($dbresult = $db->sql_query($query))) { + die('Strange SQL error'); +} +while ($row = $db->sql_fetchrow($dbresult)) { + $db->sql_query( + 'INSERT INTO ' . $bt->getTableName() . ' ' + . $db->sql_build_array( + 'INSERT', + array('bId' => $row['bId'], 'tag' => 'system:unfiled') + ) + ); +} +$db->sql_freeresult($dbresult); +?>
\ No newline at end of file |