Plugin Directory

Changeset 914017


Ignore:
Timestamp:
05/14/2014 05:02:49 PM (12 years ago)
Author:
ulih
Message:

version 0.7.6
Fix activation problem if plugin uses internal MultiPostThumbnails library

Location:
tessa-authorship/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • tessa-authorship/trunk/classes/multi-post-thumbnails.php

    r878948 r914017  
    11<?php
    22/*
    3 Plugin Name: Multiple Post Thumbnails
    4 Plugin URI: 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/
     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/
    99*/
    1010/*  Note by Uli Hake (uli|dot|hake|at|gmail|dot|com)
  • tessa-authorship/trunk/readme.txt

    r903699 r914017  
    22Contributors: ulih
    33Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=Y485CQJA5Y3PC
    4 Tags: tessa-authorship, 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
     4Tags: 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
    55Requires at least: 3.4.2
    66Tested up to: 3.9.0
    7 Stable tag: 0.7.5
     7Stable tag: 0.7.6
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    277277 == Changelog ==
    278278
     279 = 0.7.6 =
     280
     281* Fix problem if recaptchalib is already loaded by another plugin
     282* Fix header problem when initializing plugin
     283
    279284 = 0.7.5 =
    280285
  • tessa-authorship/trunk/tessa-authorship-template.php

    r878948 r914017  
    632632 * Check captcha for the message
    633633 * @since  0.6.0
     634 * @changed 0.7.6
    634635 * @return boolean is_valid
    635636 */
    636637function 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;
    638642    $recaptcha_result = recaptcha_check_answer( RECAPTCHA_PRIVATE_KEY, $_SERVER["REMOTE_ADDR"], $data["recaptcha_challenge_field"], $data["recaptcha_response_field"] );
    639643    return $recaptcha_result->is_valid;
  • tessa-authorship/trunk/tessa-authorship.php

    r903699 r914017  
    55 * Description: Add wordpress independent authorship information on posts, pages, create lists of authors, reflect related content on author's page
    66 * 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/
    119 * @author Uli Hake
    1210 * @since 0.1.0
Note: See TracChangeset for help on using the changeset viewer.