Plugin Directory

Changeset 535423


Ignore:
Timestamp:
04/24/2012 01:31:54 PM (14 years ago)
Author:
hranchFundi
Message:

1.0.12: Bug fix release.
Put exception handling around the file permissions check.

Location:
syndicate-press/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • syndicate-press/trunk/readme.txt

    r535326 r535423  
    55Requires at least: 2.8
    66Tested up to: 3.3.2
    7 Stable tag: 1.0.11
     7Stable tag: 1.0.12
    88
    99Syndicate Press lets you include RSS, RDF or Atom feeds directly in your Wordpress posts, pages, widgets or theme.
     
    4747
    4848http://henryranch.net/software/syndicate-press/syndicate-press-releases/
     49
     501.0.12: Bug fix release.
     51Put exception handling around the file permissions check.
    4952
    50531.0.11: This is a new feature release.
  • syndicate-press/trunk/syndicate-press-plugin.php

    r535421 r535423  
    55Description: This plugin provides a high performance, highly configurable and easy to use news syndication aggregator which supports RSS, RDF and ATOM feeds.
    66Author: HenryRanch LLC (henryranch.net)
    7 Version: 1.0.11
     7Version: 1.0.12
    88Author URI: http://henryranch.net/
    99License: GPL2
     
    6161if (!class_exists("SyndicatePressPlugin")) {
    6262    class SyndicatePressPlugin {
    63         var $version = "1.0.11";
     63        var $version = "1.0.12";
    6464        var $homepageURL = "http://henryranch.net/software/syndicate-press/";
    6565       
     
    381381            $inputCacheDirPerm = $this->sp_getFilePermissions($inputCacheDir);
    382382            $outputCacheDirPerm = $this->sp_getFilePermissions($outputCacheDir);
    383             if($mainCacheDirPerm != "rwxr-xr-x")
     383            if($mainCacheDirPerm != "rwxr-xr-x" && $mainCacheDirPerm != "")
    384384            {
    385385                $permProblem .= "Main cache: $mainCacheDirPerm<br>";
    386386            }
    387             if($inputCacheDirPerm != "rwxr-xr-x")
     387            if($inputCacheDirPerm != "rwxr-xr-x" && $inputCacheDirPerm != "")
    388388            {
    389389                $permProblem .= "Input cache: $inputCacheDirPerm<br>";
    390390            }
    391             if($outputCacheDirPerm != "rwxr-xr-x")
     391            if($outputCacheDirPerm != "rwxr-xr-x" && $outputCacheDirPerm != "")
    392392            {
    393393                $permProblem .= "Output cache: $outputCacheDirPerm<br>";
Note: See TracChangeset for help on using the changeset viewer.