Plugin Directory

Changeset 1490134


Ignore:
Timestamp:
09/05/2016 09:22:01 AM (10 years ago)
Author:
spindogs
Message:

release v1.0.2

Location:
wp-platform/trunk
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • wp-platform/trunk/classes/Setup.php

    r1487792 r1490134  
    5757
    5858        //router
    59         add_filter('template_include', array(__CLASS__, 'router'));
     59        add_filter('template_redirect', array(__CLASS__, 'router'));
    6060
    6161    }
  • wp-platform/trunk/plugin.php

    r1487808 r1490134  
    22/**
    33 * Plugin Name: WP-Platform
    4  * Version: 1.0.1
    5  * Description: Provides namespaced autoloading routine allowing developers to build bespoke functionality onto a Wordpress blog in an MVC and OOP fashion - also contains various helper classes to prevent repeating yourself from project to project
     4 * Version: 1.0.2
     5 * Description: Provides platform to allow developers to build bespoke functionality in an MVC and OOP fashion
    66 */
    77
     
    1313Platform\Breadcrumb::setup();
    1414Platform\Paging::setup();
     15
     16//esc wysiwyg
     17function esc_wysiwyg($str) {
     18    return $str;
     19}
Note: See TracChangeset for help on using the changeset viewer.