Plugin Directory

Changeset 953243


Ignore:
Timestamp:
07/23/2014 06:06:01 AM (12 years ago)
Author:
kaisercrazy
Message:

Version 0.3

Location:
auto-files/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • auto-files/trunk/autofiles.php

    r944333 r953243  
    44Plugin URI: http://wpadami.com/cms-sistemleri/wordpress/auto-files-mini-bir-auto-attachments.html
    55Description: This plugin is minified version of Auto Attachments. Supported attachment types are Word, Excel, Pdf, PowerPoint, zip, rar, tar, tar.gz
    6 Version: 0.2
     6Version: 0.3
    77Author: Serkan Algur
    88Author URI: http://www.wpadami.com
     
    8080    $metapage = get_post_meta($post->ID,'aa_page_meta',TRUE);
    8181        if (get_post_type() == 'post') {
    82             if (!post_password_required() && $metapost['show'] == 'yes'){
     82            if (!post_password_required() && ($metapost['show'] == 'yes' || $metapost['show'] == null || $metapost['fshow'] == yes)){
    8383                    $content .= autof_show_files();
    8484                    return $content;
     
    8989
    9090        if (get_post_type() == 'page'){
    91             if (!post_password_required() && $metapage['show'] == 'yes'){
     91            if (!post_password_required() && ($metapage['show'] == 'yes' || $metapage['show'] == null || $metapage['fshow'] == 'yes')){
    9292                    $content .= autof_show_files();
    9393                    return $content;
  • auto-files/trunk/readme.txt

    r944333 r953243  
    3333== Changelog ==
    3434
     35= Version 0.3 =
     36* Fixes for file attachments show. Auto Attachments settings fully supported with this version.
     37
    3538= Version 0.2 =
    3639* Users can hide Auto Files from page and posts. Users will find a metabox each page/post edit area.
Note: See TracChangeset for help on using the changeset viewer.