Plugin Directory

Changeset 368028


Ignore:
Timestamp:
04/01/2011 08:19:18 PM (15 years ago)
Author:
gluten
Message:

Merge branch 'master' of github.com:samargulies/galleria-galleria

Location:
galleria-galleria/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • galleria-galleria/trunk/galleria-galleria.php

    r367769 r368028  
    44Plugin URI:
    55Description: Transform standard WordPress galleries into galleria slideshows.
    6 Version: 0.1
     6Version: 0.1.1
    77Author: Sam Margulies
    88Author URI:
     
    449449    }
    450450   
    451     echo "<div class='galleria-gallery' $style>";
    452     echo gallery_shortcode($attr);
    453     echo '</div><!-- end .galleria-gallery -->';
     451    $content = "<div class='galleria-gallery' $style>";
     452    $content .= gallery_shortcode($attr);
     453    $content .= '</div><!-- end .galleria-gallery -->';
    454454   
    455455    //remove our action to avoid changing this behavior for others
    456456    remove_action('wp_get_attachment_link', 'galleria_galleria_get_attachment_link', 2, 6);
     457
     458    return $content;
    457459}
    458460
  • galleria-galleria/trunk/readme.txt

    r367769 r368028  
    55Requires at least: 3.0
    66Tested up to: 3.1
    7 Stable tag: 0.1
     7Stable tag: 0.1.1
    88
    99Transform standard WordPress galleries into galleria slideshows.
     
    3333== Changelog ==
    3434
     35= Version 0.1.1 =
     36Display gallery where it is embedded instead of at the top of the post.
     37
    3538= Version 0.1 =
    3639Initial commit
Note: See TracChangeset for help on using the changeset viewer.