User Photo - Version 0.9.7

Version Description

  • Fixed WordPress deprecated notices
Download this release

Release Info

Developer glen_scott
Plugin Icon wp plugin User Photo
Version 0.9.7
Comparing to
See all releases

Code changes from version 0.9.6 to 0.9.7

Files changed (2) hide show
  1. readme.txt +4 -1
  2. user-photo.php +2 -2
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: westonruter, ryanhellyer, glen_scott
3
  Tags: users, photos, images
4
  Requires at least: 3.0.5
5
  Tested up to: 4.3.1
6
- Stable tag: 0.9.6
7
 
8
  Allows a user to associate a photo with their account and for this photo to be displayed in their posts and comments.
9
 
@@ -114,6 +114,9 @@ If you value this plugin, *please donate* to ensure that it may continue to be m
114
 
115
  == Changelog ==
116
 
 
 
 
117
  = 0.9.6 =
118
  * Fixed PHP notice about deprecated argument
119
  * Use semantic versioning for plugin files
3
  Tags: users, photos, images
4
  Requires at least: 3.0.5
5
  Tested up to: 4.3.1
6
+ Stable tag: 0.9.7
7
 
8
  Allows a user to associate a photo with their account and for this photo to be displayed in their posts and comments.
9
 
114
 
115
  == Changelog ==
116
 
117
+ = 0.9.7 =
118
+ * Fixed WordPress deprecated notices
119
+
120
  = 0.9.6 =
121
  * Fixed PHP notice about deprecated argument
122
  * Use semantic versioning for plugin files
user-photo.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: User Photo
4
  Plugin URI: http://wordpress.org/extend/plugins/user-photo/
5
  Description: Allows users to associate photos with their accounts by accessing their "Your Profile" page. Uploaded images are resized to fit the dimensions specified on the options page; a thumbnail image is also generated. New template tags introduced are: <code>userphoto_the_author_photo</code>, <code>userphoto_the_author_thumbnail</code>, <code>userphoto_comment_author_photo</code>, and <code>userphoto_comment_author_thumbnail</code>. Uploaded images may be moderated by administrators.
6
- Version: 0.9.6
7
  Author: <a href="http://weston.ruter.net/">Weston Ruter</a>
8
 
9
  Original code by Weston Ruter <http://weston.ruter.net> at Shepherd Interactive <http://shepherd-interactive.com>.
@@ -668,7 +668,7 @@ add_action('edit_user_profile', 'userphoto_display_selector_fieldset');
668
 
669
  function userphoto_add_page() {
670
  //if (function_exists('add_options_page'))
671
- add_options_page('User Photo', 'User Photo', 8, __FILE__, 'userphoto_options_page');
672
  }
673
  add_action('admin_menu', 'userphoto_add_page');
674
 
3
  Plugin Name: User Photo
4
  Plugin URI: http://wordpress.org/extend/plugins/user-photo/
5
  Description: Allows users to associate photos with their accounts by accessing their "Your Profile" page. Uploaded images are resized to fit the dimensions specified on the options page; a thumbnail image is also generated. New template tags introduced are: <code>userphoto_the_author_photo</code>, <code>userphoto_the_author_thumbnail</code>, <code>userphoto_comment_author_photo</code>, and <code>userphoto_comment_author_thumbnail</code>. Uploaded images may be moderated by administrators.
6
+ Version: 0.9.7
7
  Author: <a href="http://weston.ruter.net/">Weston Ruter</a>
8
 
9
  Original code by Weston Ruter <http://weston.ruter.net> at Shepherd Interactive <http://shepherd-interactive.com>.
668
 
669
  function userphoto_add_page() {
670
  //if (function_exists('add_options_page'))
671
+ add_options_page('User Photo', 'User Photo', 'manage_options', __FILE__, 'userphoto_options_page');
672
  }
673
  add_action('admin_menu', 'userphoto_add_page');
674