forked from e621ng/e621ng
potential fix for #1745
This commit is contained in:
parent
f16f530eea
commit
97a1550d2e
@ -18,7 +18,7 @@
|
||||
limit: 10,
|
||||
valueKey: "name",
|
||||
template: function(context) {
|
||||
return "<p>" + context.name.replace(/_/g, " ") + "</a></p>";
|
||||
return "<p>" + context.name.replace(/_/g, " ") + "</p>";
|
||||
}
|
||||
});
|
||||
}
|
||||
|
@ -10,7 +10,7 @@
|
||||
limit: 10,
|
||||
valueKey: "title",
|
||||
template: function(context) {
|
||||
return "<p>" + context.title.replace(/_/g, " ") + "</a></p>";
|
||||
return "<p>" + context.title.replace(/_/g, " ") + "</p>";
|
||||
}
|
||||
});
|
||||
}
|
||||
|
@ -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');
|
||||
INSERT INTO schema_migrations (version) VALUES ('20130606224559');
|
||||
|
||||
INSERT INTO schema_migrations (version) VALUES ('20130618230158');
|
Loading…
Reference in New Issue
Block a user