The topic says it all. It seems that someone has forgotten to put the link into the menu or was intentionally removed for a reason.
The topic says it all. It seems that someone has forgotten to put the link into the menu or was intentionally removed for a reason.
Huh.. you're right.
Check and see if it does the same in WP. If so, it needs to be brought up over there.
Hmmm. I have it on my 1.5.1 and on WordPress 2.5.1
oh sorry - mis-read. Yes it isn't in the Manage sub menu, but can be accessed via the link edit page on the right hand side.
It is in WordPress 2.5.1 on the menu.
Just fixed that in trunk, thanks for posting about it.
I know I should be using SVN and for that matter understanding better how it works, but I wonder if someone can explain something to me?
I went to trunk and saw that the line var $usermeta; shows as removed. As I understand it, this is the only change to this file?
So, to try and double-check my understanding, I opened my existing wp-db.php (1.5.1) and did a search on "usermeta". I found 5 instances, lines 38, 42, 123, 284, and 345.
Then I opened the wp-db.php from trunk, searched the same and saw 5 instances on lines 145, 226, 412, 618, and 686.
So, I'm confused. Trac says that var $usermeta; has been removed, but it's still there?
I'm just trying to understand the change before I overwrite my existing wp-db.php
Please slap me if I'm over-simplifying the process, or completely traveling down the wrong road.
For the menu fix - you're looking at the wrong changeset. The usermeta fix came later :)
Have a look at this one:
http://trac.mu.wordpress.org/changeset/1339
For the usermeta, it will still exist in the file, it was declared twice so generated an error on some peoples systems. Only the extra declaration was removed. See:
http://trac.mu.wordpress.org/ticket/666#comment:3
A search for "var $usermeta;" should now only return a single line.
Thank you very much, makes perfect sense!