Plugin Directory

Changeset 342271


Ignore:
Timestamp:
02/08/2011 06:14:31 AM (15 years ago)
Author:
MikhailKozlov
Message:

Closes #7

  • removed album update. now albums only imported. all updates are done manually
  • added the_excerpt() filter for better compatibility with custom themes
Location:
picasa-albums/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • picasa-albums/trunk/plugin.php

    r342096 r342271  
    55Plugin URI: http://mikhailkozlov.com/picasa-albums-for-wordpress/
    66Description: Creates custom post type and displays picasa albums
    7 Version: 1.0.4
     7Version: 1.0.5
    88Author: Mikhail Kozlov 
    99Author URI: http://mikhailkozlov.com
     
    109109
    110110        add_filter('the_content',array('wpPicasa','picasa_album_filter'));
    111                
     111        // v 1.0.5
     112        // some themes call the_exerpt();
     113        add_filter('the_excerpt',array('wpPicasa','picasa_album_filter'));
     114       
    112115    }
    113116    function add_custom_boxes(){
     
    282285            if(isset($albums) && is_array($albums) && array_key_exists($aData['id'],$albums)){
    283286                // update existing album. images will not be updated
    284                 self::insertAlbums($aData,$albums[$aData['id']]);
     287                // v 1.0.5
     288                // self::insertAlbums($aData,$albums[$aData['id']]);
     289                // we used to update here, but people did not want this.
    285290            }else{
    286291                //new album. images will BE imported
  • picasa-albums/trunk/readme.txt

    r342096 r342271  
    5858
    5959v. 1.0.4
     60
    6061    * /admin/scripts.js - relative path for ajax requests per issue #5 in github. Thanks stephanvierkant.
    6162    * /plugin.php - simpleXml warning path not found possible fix. Thanks stephanvierkant.
    62    
     63
     64v. 1.0.5
     65
     66    * removed album update. now albums only imported. all updates are done manually. Closes #7
     67    * added the_excerpt() filter for better compatibility with custom themes   
Note: See TracChangeset for help on using the changeset viewer.