Plugin Directory

Changeset 1505732


Ignore:
Timestamp:
09/30/2016 09:31:40 AM (10 years ago)
Author:
spindogs
Message:

release 1.2.2

Location:
wp-platform/trunk
Files:
2 edited

Legend:

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

    r1505671 r1505732  
    592592
    593593    /**
     594     * @param string $start
     595     * @return string
     596     */
     597    public static function titleCase($str)
     598    {
     599        $str = strtolower($str);
     600        $str = ucwords($str);
     601        return $str;
     602    }
     603
     604    /**
    594605     * @deprecated
    595606     * @param int $secs
     
    703714    public static function from_mysqltime(&$str)
    704715    {
    705         return self::fromMsqlTime($str);
     716        return self::fromMysqlTime($str);
    706717    }
    707718
  • wp-platform/trunk/plugin.php

    r1505671 r1505732  
    22/**
    33 * Plugin Name: WP-Platform
    4  * Version: 1.2.0
     4 * Version: 1.2.2
    55 * Description: Provides platform to allow developers to build bespoke functionality in an MVC and OOP fashion
    66 */
Note: See TracChangeset for help on using the changeset viewer.