diff --git a/app/assets/javascripts/artists.js b/app/assets/javascripts/artists.js index 52f1155e0..f51e03496 100644 --- a/app/assets/javascripts/artists.js +++ b/app/assets/javascripts/artists.js @@ -18,7 +18,7 @@ limit: 10, valueKey: "name", template: function(context) { - return "

" + context.name.replace(/_/g, " ") + "

"; + return "

" + context.name.replace(/_/g, " ") + "

"; } }); } diff --git a/app/assets/javascripts/wiki_pages.js b/app/assets/javascripts/wiki_pages.js index 1a612728b..810f907ea 100644 --- a/app/assets/javascripts/wiki_pages.js +++ b/app/assets/javascripts/wiki_pages.js @@ -10,7 +10,7 @@ limit: 10, valueKey: "title", template: function(context) { - return "

" + context.title.replace(/_/g, " ") + "

"; + return "

" + context.title.replace(/_/g, " ") + "

"; } }); } diff --git a/db/structure.sql b/db/structure.sql index ca0827ab0..1bdcbd170 100644 --- a/db/structure.sql +++ b/db/structure.sql @@ -2695,7 +2695,8 @@ CREATE TABLE users ( enable_sequential_post_navigation boolean DEFAULT true NOT NULL, per_page integer DEFAULT 20 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 ); @@ -6418,4 +6419,6 @@ INSERT INTO schema_migrations (version) VALUES ('20130424121410'); INSERT INTO schema_migrations (version) VALUES ('20130506154136'); -INSERT INTO schema_migrations (version) VALUES ('20130606224559'); \ No newline at end of file +INSERT INTO schema_migrations (version) VALUES ('20130606224559'); + +INSERT INTO schema_migrations (version) VALUES ('20130618230158'); \ No newline at end of file