The new forums will be named Coin Return (based on the most recent vote)! You can check on the status and timeline of the transition to the new forums here.
The Guiding Principles and New Rules document is now in effect.
On other forums I have been to in the past, some have had a drop down list at the bottom right of all pages (except forum index), that allow you to "jump to" the chosen forum, bypassing the Forum Index page.
Sounds like I am just being too lazy to go back to the Index and then to the forum I want to, but think about the times when HomeLAN is going running on its hairbrush connection and it would convienent to go from one forum to another instead of using extra time to load the index.
I would just edit the address bar of the forum #, but they seem to be out of order. Not as easy as changing a page #.
agreed
either keep the format the way it is or only the pulldown, but not both. I like it the way it is though.
Starfuck on
jackfaces
"If you're going to play tiddly winks, play it with man hole covers."
- John McCallum
0
RamiusJoined: July 19, 2000Administrator, ClubPAadmin
edited April 2004
The reason I removed it is because it has a fairly significant overhead. It appears on every single page, and in order to create that dropdown, it needs to first query the database for the list of forums, then determine if you have rights to a forum or not, then check to see if any groups you are in give you rights to the forum or not.
There is probably a way of implementing it without the overhead, but I never spent the time to figure that out. I just removed it.
Shortytouching the meatIntergalactic Cool CourtRegistered Userregular
edited April 2004
Um, didn't we used to have it, for awhile?
Shorty on
0
Munkus BeaverYou don't have to attend every argument you are invited to.Philosophy: Stoicism. Politics: Democratic SocialistRegistered User, ClubPAregular
phpBB actually has this feature built-in. Ramius apparently took it off.
Munkus Beaver on
Humor can be dissected as a frog can, but dies in the process.
0
OrthancDeath Lite, Only 1 CalorieOff the end of the internet, just turn left.Registered User, ClubPAregular
edited April 2004
I'd do it as follows
1) at login get the name and id of all the forums the user can access
2) put them as an array in $_SESSION
3) generate the select from the array at each page (single for loop, fuck all overhead).
4) ......
5) profit.
Posts
I already knew it came with phpBB, but, there is still a wonder of the why :?:
Being it would be such a nice feature. . .
I've been trying to reach you, but your extension cord doesn't reach that far.
either keep the format the way it is or only the pulldown, but not both. I like it the way it is though.
"If you're going to play tiddly winks, play it with man hole covers."
- John McCallum
There is probably a way of implementing it without the overhead, but I never spent the time to figure that out. I just removed it.
1) at login get the name and id of all the forums the user can access
2) put them as an array in $_SESSION
3) generate the select from the array at each page (single for loop, fuck all overhead).
4) ......
5) profit.