First of all, whooami, you really rock. Thank you for all your help on this site.
Second, I had the same problem cited above. Exactly the same warning. Just different line numbers, so I could not get to the WP login page.
Here is what the first four lines of functions.php looked like:
<?php
function mysql2date($dateformatstring, $mysqlstring, $translate = true) {
global $wp_locale;
I removed the one blank line at line two, so now it looks like:
<?php
function mysql2date($dateformatstring, $mysqlstring, $translate = true) {
global $wp_locale;
Uploaded the modified functions.php and the problem was fixed!
But my question is, Why?
Because the original functions.php that came with this WordPress 2.3 installation has that blank line in it.
Thanks again!
Mark M.