Make WordPress Core


Ignore:
Timestamp:
05/04/2008 06:05:20 PM (18 years ago)
Author:
ryan
Message:

Add blank to default avatars. Rename default to Mystery Man. see #6802

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/options-discussion.php

    r7883 r7886  
    7979<h3><?php _e('Avatars') ?></h3>
    8080
    81 <p><?php _e('By default WordPress uses <a href="http://gravatar.com/">Gravatars</a> &#8212; short for Globally Recognized Avatars &#8212; for the pictures that show up next to comments. Plugins may override this.'); ?></p>
     81<p><?php _e('An avatar is an image that follows you from weblog to weblog appearing beside your name when you comment on avatar enabled sites.  Here you can enable the display of avatars for people who comment on your blog.'); ?></p>
    8282
    8383<?php // the above would be a good place to link to codex documentation on the gravatar functions, for putting it in themes. anything like that? ?>
     
    118118<?php
    119119$avatar_defaults = array(
    120     'default' => __('Default'),
     120    'mystery' => __('Mystery Man'),
     121    'blank' => __('Blank'),
    121122    'gravatar_default' => __('Gravatar Logo'),
    122123    'identicon' => __('Identicon (Generated)'),
     
    127128$default = get_option('avatar_default');
    128129if ( empty($default) )
    129     $default = 'default';
     130    $default = 'mystery';
    130131$size = 32;
    131132$avatar_list = '';
Note: See TracChangeset for help on using the changeset viewer.