Posted by Wesley Tanaka on November 26, 2005 at 3:40pm
Jump to:
| Project: | Drupal core |
| Version: | 4.7.0 |
| Component: | database system |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed (won't fix) |
Issue Summary
I've noticed that comments on some forum threads show up in collapsed mode if I'm logged in as uid=1. Not sure if this is a bug yet.
Comments
#1
Turns out that it's not a bug in comment.module, but some weirdness that happened during the upgrade where uid=1's mode in {users} got set to 2. There's no "not a bug" status, so I'm setting "postponed" in case someone wants to look at the upgrade process.
#2
In case someone finds this via search, changing the title. The fix in my case was:
UPDATE drupal_users SET mode=0 WHERE uid=1;#3
Drupal 4.x is unsupported.