Skip to content

Commit

Permalink
Note that Subscriptions menu option only applies to Subscribe plugin.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiemccarthy committed Oct 17, 2002
1 parent 78e7b96 commit cb51332
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sql/mysql/upgrades
Original file line number Diff line number Diff line change
Expand Up @@ -847,10 +847,12 @@ UPDATE menus SET sel_label=label;
DELETE FROM menus WHERE menu='users';
INSERT INTO menus (menu, label, sel_label, value, seclev, showanon, menuorder) VALUES ('users', 'Logout', 'logout', '/my/logout', 1, 0, 10);
INSERT INTO menus (id, menu, label, sel_label, value, seclev, menuorder, showanon) VALUES (NULL, 'users', 'Preferences', 'preferences', '/users.pl?op=edituser', 1, 20, 0);
INSERT INTO menus (id, menu, label, sel_label, value, seclev, menuorder, showanon) VALUES (NULL, 'users', 'Subscription', 'subscription', '/subscribe.pl', 1, 30, 0);
INSERT INTO menus (id, menu, label, sel_label, value, seclev, menuorder, showanon) VALUES (NULL, 'users', 'Password', 'password', '/users.pl?op=changepasswd', 1, 40, 0);
INSERT INTO menus (id, menu, label, sel_label, value, seclev, menuorder, showanon) VALUES (NULL, 'users', '[% USE Slash; user.nickname | strip_literal %]', 'me', '/~[% USE Slash; user.nickname | strip_literal %]', 1, 50, 0);

# Change for plugins/Subscribe (ignore if not using that plugin)
INSERT INTO menus (id, menu, label, sel_label, value, seclev, menuorder, showanon) VALUES (NULL, 'users', 'Subscription', 'subscription', '/subscribe.pl', 1, 30, 0);

DELETE FROM vars WHERE name='commentsPerPoint';

# Due to a bug, the old "hide anonymous comments at -1" feature was
Expand Down

0 comments on commit cb51332

Please sign in to comment.