potential fix for #1745

This commit is contained in:
r888888888
2013-06-18 16:10:30 -07:00
parent f16f530eea
commit 97a1550d2e
3 changed files with 7 additions and 4 deletions

View File

@@ -18,7 +18,7 @@
limit: 10, limit: 10,
valueKey: "name", valueKey: "name",
template: function(context) { template: function(context) {
return "<p>" + context.name.replace(/_/g, " ") + "</a></p>"; return "<p>" + context.name.replace(/_/g, " ") + "</p>";
} }
}); });
} }

View File

@@ -10,7 +10,7 @@
limit: 10, limit: 10,
valueKey: "title", valueKey: "title",
template: function(context) { template: function(context) {
return "<p>" + context.title.replace(/_/g, " ") + "</a></p>"; return "<p>" + context.title.replace(/_/g, " ") + "</p>";
} }
}); });
} }

View File

@@ -2695,7 +2695,8 @@ CREATE TABLE users (
enable_sequential_post_navigation boolean DEFAULT true NOT NULL, enable_sequential_post_navigation boolean DEFAULT true NOT NULL,
per_page integer DEFAULT 20 NOT NULL, per_page integer DEFAULT 20 NOT NULL,
hide_deleted_posts boolean DEFAULT false NOT NULL, hide_deleted_posts boolean DEFAULT false NOT NULL,
style_usernames boolean DEFAULT false NOT NULL style_usernames boolean DEFAULT false NOT NULL,
enable_auto_complete boolean DEFAULT true NOT NULL
); );
@@ -6419,3 +6420,5 @@ INSERT INTO schema_migrations (version) VALUES ('20130424121410');
INSERT INTO schema_migrations (version) VALUES ('20130506154136'); INSERT INTO schema_migrations (version) VALUES ('20130506154136');
INSERT INTO schema_migrations (version) VALUES ('20130606224559'); INSERT INTO schema_migrations (version) VALUES ('20130606224559');
INSERT INTO schema_migrations (version) VALUES ('20130618230158');