Changeset 914017
- Timestamp:
- 05/14/2014 05:02:49 PM (12 years ago)
- Location:
- tessa-authorship/trunk
- Files:
-
- 4 edited
-
classes/multi-post-thumbnails.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
tessa-authorship-template.php (modified) (1 diff)
-
tessa-authorship.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
tessa-authorship/trunk/classes/multi-post-thumbnails.php
r878948 r914017 1 1 <?php 2 2 /* 3 PluginName: Multiple Post Thumbnails4 PluginURI: http://wordpress.org/extend/plugins/multiple-post-thumbnails/5 Description: Adds the ability to add multiple post thumbnails to a post type.6 Version: 1.67 Author: Chris Scott8 Author URI: http://voceplatforms.com/3 *PluginName: Multiple Post Thumbnails 4 *PluginURI: http://wordpress.org/extend/plugins/multiple-post-thumbnails/ 5 *Description: Adds the ability to add multiple post thumbnails to a post type. 6 *Version: 1.6 7 *Author: Chris Scott 8 *Author URI: http://voceplatforms.com/ 9 9 */ 10 10 /* Note by Uli Hake (uli|dot|hake|at|gmail|dot|com) -
tessa-authorship/trunk/readme.txt
r903699 r914017 2 2 Contributors: ulih 3 3 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=Y485CQJA5Y3PC 4 Tags: tessa -authorship, tessaauthorship, authorship, biography, bio, bio box, related, related post, related author, link post, link author, relation, relationship, biography box, twitter, facebook, linkedin, googleplus, google+, delicious, flickr, picasa, vimeo, youtube, reddit, website, about, author, user, about author, user box, author box, contributors, author bio, author biography, user biography, avatar, gravatar, guest post, guest author, publisher, copyright, gallery, exposition, third-party content, widget, shortcode, template-tag, social, fusion, collaboration, custom post-type, post-type, custom post type, post type4 Tags: tessa authorship, authorship, biography, bio, bio box, related, related post, related author, link post, link author, relation, relationship, biography box, twitter, facebook, linkedin, googleplus, google+, delicious, flickr, picasa, vimeo, youtube, reddit, website, about, author, user, about author, user box, author box, contributors, author bio, author biography, user biography, avatar, gravatar, guest post, guest author, publisher, copyright, gallery, exposition, third-party content, widget, shortcode, template-tag, social, fusion, collaboration, custom post-type, post-type, custom post type, post type 5 5 Requires at least: 3.4.2 6 6 Tested up to: 3.9.0 7 Stable tag: 0.7. 57 Stable tag: 0.7.6 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 277 277 == Changelog == 278 278 279 = 0.7.6 = 280 281 * Fix problem if recaptchalib is already loaded by another plugin 282 * Fix header problem when initializing plugin 283 279 284 = 0.7.5 = 280 285 -
tessa-authorship/trunk/tessa-authorship-template.php
r878948 r914017 632 632 * Check captcha for the message 633 633 * @since 0.6.0 634 * @changed 0.7.6 634 635 * @return boolean is_valid 635 636 */ 636 637 function tas_message_check( $true, $post, $data ) { 637 require_once plugin_dir_path( __FILE__ ).'recaptchalib.php'; 638 //load lib only if it's not available by testing on function used 639 if ( !function_exists('recaptcha_check_answer') ) : 640 require_once plugin_dir_path( __FILE__ ).'recaptchalib.php'; 641 endif; 638 642 $recaptcha_result = recaptcha_check_answer( RECAPTCHA_PRIVATE_KEY, $_SERVER["REMOTE_ADDR"], $data["recaptcha_challenge_field"], $data["recaptcha_response_field"] ); 639 643 return $recaptcha_result->is_valid; -
tessa-authorship/trunk/tessa-authorship.php
r903699 r914017 5 5 * Description: Add wordpress independent authorship information on posts, pages, create lists of authors, reflect related content on author's page 6 6 * Author: Uli Hake 7 * Version: 0.7.5 8 * Author URI: http://takebarcelona.com 9 * @package WordPress 10 * @subpackage Tessa_Authorship 7 * Version: 0.7.6 8 * Author URI: http://takebarcelona.com/authorship/uli-hake/ 11 9 * @author Uli Hake 12 10 * @since 0.1.0
Note: See TracChangeset
for help on using the changeset viewer.