Plugin Directory

Changeset 484773

Timestamp:
01/04/2012 10:59:44 PM (13 years ago)
Author:
johnciacia
Message:

removed php 5.3 only functionality and replcated with php 5.2 equivalent

Location:
propel/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • propel/trunk/plugins/users.php

    r484098 r484773  
    137137
    138138    public static function list_authors() {
    139         require_once( __DIR__ . '/../metaboxes/list-authors.php')   ;
     139        require_once( . '/../metaboxes/list-authors.php') ;
    140140    }
    141141
  • propel/trunk/post-types/project.php

    r484098 r484773  
    316316
    317317        $posts = $wpdb->get_results($query);
    318         require( __DIR__ . '/../metaboxes/tasks.php');
     318        require( . '/../metaboxes/tasks.php');
    319319    }
    320320
     
    335335
    336336        $posts = $wpdb->get_results($query);
    337         require( __DIR__ . '/../metaboxes/tasks.php' );
     337        require( . '/../metaboxes/tasks.php' );
    338338    }
    339339
     
    366366        $users = get_users();
    367367
    368         require_once( __DIR__ . '/../metaboxes/project-meta.php' );
     368        require_once( . '/../metaboxes/project-meta.php' );
    369369    }
    370370
     
    408408     */
    409409    public static function add_task() {
    410         require_once( __DIR__ . '/../metaboxes/add-task.php' );
     410        require_once( . '/../metaboxes/add-task.php' );   
    411411    }
    412412
  • propel/trunk/post-types/task.php

    r484098 r484773  
    435435
    436436
    437         require_once( __DIR__ . '/../metaboxes/task-meta.php' );
     437        require_once( . '/../metaboxes/task-meta.php' );
    438438    }
    439439
  • propel/trunk/propel.php

    r484143 r484773  
    44Plugin URI: http://www.johnciacia.com/propel/
    55Description: Easily manage your projects, clients, tasks, and files.
    6 Version: 2.0.1
     6Version: 2.0.
    77Author: John Ciacia
    88Author URI: http://www.johnciacia.com
     
    5555        add_action( 'init', array( __CLASS__, 'init'));
    5656       
    57         require_once( __DIR__ . '/functions.php' );
    58         require_once( __DIR__ . '/post-types/project.php' );
    59         require_once( __DIR__ . '/post-types/task.php' );
     57        require_once( . '/functions.php' );
     58        require_once( . '/post-types/project.php' );
     59        require_once( . '/post-types/task.php' );
    6060        if( Propel_Options::get_option('time_tracking') )
    61             require_once( __DIR__ . '/post-types/time.php' );
     61            require_once( . '/post-types/time.php' );
    6262        if( Propel_Options::get_option('user_restrictions') )
    63             require_once( __DIR__ . '/plugins/users.php' );
     63            require_once( . '/plugins/users.php' );
    6464    }
    6565       
  • propel/trunk/readme.txt

    r484143 r484773  
    33Tags: project, management, collaboration, tasks, project management, task management, basecamp
    44Requires at least: 3.0
    5 Tested up to: 3.3
    6 Stable tag: 2.0.1
     5Tested up to: 3.3
     6Stable tag: 2.0.
    77
    88This plugin allows users to manage projects and tasks.
Note: See TracChangeset for help on using the changeset viewer.