potential fix for #1745
This commit is contained in:
@@ -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>";
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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>";
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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');
|
||||||
Reference in New Issue
Block a user