diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-05-19 12:10:10 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-05-19 12:10:10 +0000 |
commit | 66ad0634e224d660e9a6f3c829cd129185321527 (patch) | |
tree | c5f0d9f51d98195ee3687c689a113ab958ee89a6 /templates | |
parent | fd8dce8cccc280f04c5f6201df54ad7fde61d1a7 (diff) | |
download | semanticscuttle-66ad0634e224d660e9a6f3c829cd129185321527.tar.gz semanticscuttle-66ad0634e224d660e9a6f3c829cd129185321527.tar.bz2 |
Interface fix: clicks on a bookmark open it into a new window.
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@326 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'templates')
-rw-r--r-- | templates/bookmarks.tpl.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/bookmarks.tpl.php b/templates/bookmarks.tpl.php index a7cc184..5aefc82 100644 --- a/templates/bookmarks.tpl.php +++ b/templates/bookmarks.tpl.php @@ -246,7 +246,7 @@ if($currenttag!= '') { echo '<div '.$adminBgClass.' >';; - echo '<div class="link"><a href="'. $address .'"'. $rel .' class="taggedlink">'. filter($row['bTitle']) ."</a>" . $adminStar . "</div>\n"; + echo '<div class="link"><a href="'. $address .'"'. $rel .' class="taggedlink" target="_blank">'. filter($row['bTitle']) ."</a>" . $adminStar . "</div>\n"; if ($row['bDescription'] == '') { $bkDescription = '-'; } else { |