User Photo - Version 0.9.5.2

Version Description

Download this release

Release Info

Developer ryanhellyer
Plugin Icon wp plugin User Photo
Version 0.9.5.2
Comparing to
See all releases

Code changes from version 0.9.5.1 to 0.9.5.2

Files changed (2) hide show
  1. readme.txt +8 -4
  2. user-photo.php +3 -3
readme.txt CHANGED
@@ -1,14 +1,14 @@
1
  === User Photo ===
2
- Contributors: westonruter
3
  Tags: users, photos, images
4
- Tested up to: 3.0.5
5
- Stable tag: 0.9.5.1
6
 
7
  Allows a user to associate a photo with their account and for this photo to be displayed in their posts and comments.
8
 
9
  == Description ==
10
 
11
- ***Make sure you upgrade to version 0.9.5!***
12
 
13
  Allows a user to associate a profile photo with their account through their "Your Profile" page. Admins may
14
  add a user profile photo by accessing the "Edit User" page. Uploaded images are resized to fit the dimensions specified
@@ -115,6 +115,10 @@ If you value this plugin, *please donate* to ensure that it may continue to be m
115
 
116
  == Changelog ==
117
 
 
 
 
 
118
  = 2011-02-17: 0.9.5 =
119
 
120
  * Fixing major security issue (credit ADVtools SARL).
1
  === User Photo ===
2
+ Contributors: westonruter, ryanhellyer
3
  Tags: users, photos, images
4
+ Requires at least: 3.0.5
5
+ Stable tag: 0.9.5.2
6
 
7
  Allows a user to associate a photo with their account and for this photo to be displayed in their posts and comments.
8
 
9
  == Description ==
10
 
11
+ ***Make sure you upgrade to version 0.9.5.2!***
12
 
13
  Allows a user to associate a profile photo with their account through their "Your Profile" page. Admins may
14
  add a user profile photo by accessing the "Edit User" page. Uploaded images are resized to fit the dimensions specified
115
 
116
  == Changelog ==
117
 
118
+ = 2012-05-08: 0.9.5.2 =
119
+
120
+ * Security issue (credit Ryan Hellyer).
121
+
122
  = 2011-02-17: 0.9.5 =
123
 
124
  * Fixing major security issue (credit ADVtools SARL).
user-photo.php CHANGED
@@ -3,11 +3,11 @@
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.5.1
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>.
10
- Continued development and maintenance by Dave Wagner (cptnwinky) <http://dev.dave-wagner.com/>
11
 
12
  GNU General Public License, Free Software Foundation <http://creativecommons.org/licenses/GPL/2.0/>
13
  This program is free software; you can redistribute it and/or modify
@@ -722,7 +722,7 @@ function userphoto_options_page(){
722
  ?>
723
  <div class="wrap">
724
  <h2>User Photo Options</h2>
725
- <form method="post" action="<?php echo $_SERVER['REQUEST_URI'] ?>" id='userphoto_options_form'>
726
  <?php
727
  if(function_exists('wp_nonce_field'))
728
  wp_nonce_field('update-options-userphoto');
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.5.2
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>.
10
+ Continued development and maintenance by Dave Wagner (cptnwinky) <http://dev.dave-wagner.com/> and Ryan Hellyer (ryanhellyer)
11
 
12
  GNU General Public License, Free Software Foundation <http://creativecommons.org/licenses/GPL/2.0/>
13
  This program is free software; you can redistribute it and/or modify
722
  ?>
723
  <div class="wrap">
724
  <h2>User Photo Options</h2>
725
+ <form method="post" action="<?php echo esc_url( $_SERVER['REQUEST_URI'] ); ?>" id='userphoto_options_form'>
726
  <?php
727
  if(function_exists('wp_nonce_field'))
728
  wp_nonce_field('update-options-userphoto');