Skip to content

Commit

Permalink
Item1918: oops, forgot to
Browse files Browse the repository at this point in the history
- correct the inline DDL SQL
- remove a JS alert

git-svn-id: http://svn.foswiki.org/trunk/TagsPlugin@5362 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
OliverKrueger authored and OliverKrueger committed Oct 22, 2009
1 parent 6872eff commit 95ba612
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion lib/Foswiki/Plugins/TagsPlugin.pm
Expand Up @@ -669,7 +669,7 @@ CREATE TABLE IF NOT EXISTS `UserItemTag` (
`item_id` int(10) unsigned NOT NULL,
`tag_id` int(10) unsigned NOT NULL,
`public` int(10) unsigned NOT NULL,
PRIMARY KEY (`user_id`,`item_id`,`tag_id`,`public`),
PRIMARY KEY (`user_id`,`item_id`,`tag_id`),
KEY `item_id` (`item_id`),
KEY `tag_id` (`tag_id`),
CONSTRAINT `UserItemTag_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `Users` (`CUID`),
Expand Down
1 change: 0 additions & 1 deletion pub/System/TagsPlugin/tagsplugin-base.js
Expand Up @@ -83,7 +83,6 @@
var web = foswiki.web;
var topic = foswiki.topic;
var tag = $(event.target).closest("a[tag]").attr("tag");
alert(tag);
var user = $(event.target).closest("a[tag]").attr("user");
$("#tagsplugin_processing img").show();
if ( $("#tagsplugin_dialog_details").size() == 0 ) {
Expand Down

0 comments on commit 95ba612

Please sign in to comment.