change request - correct welcome message
I'm not sure where to post this, as this is more of a bug than a feature (I believe).
includes/theme-functions.php line 69 says:
PHP Code:
<?php _e('Welcome,','cp'); ?> <strong><?php echo $current_user->user_login; ?></strong> [ <a href="<?php echo...
I believe
user_login should be replaced with
display_name, so it should say:
PHP Code:
<?php _e('Welcome,','cp'); ?> <strong><?php echo $current_user->display_name; ?></strong> [ <a href="<?php echo...
Since wordpress supports providing a nice display name, and the classipress theme makes use of it I see no reason not to use it in the salutation.
Btw, do you guys have a better place to submit bugs (or at least things that your users suspect are bugs)?