Changeset 1505732
- Timestamp:
- 09/30/2016 09:31:40 AM (10 years ago)
- Location:
- wp-platform/trunk
- Files:
-
- 2 edited
-
classes/Filter.php (modified) (2 diffs)
-
plugin.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-platform/trunk/classes/Filter.php
r1505671 r1505732 592 592 593 593 /** 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 /** 594 605 * @deprecated 595 606 * @param int $secs … … 703 714 public static function from_mysqltime(&$str) 704 715 { 705 return self::fromM sqlTime($str);716 return self::fromMysqlTime($str); 706 717 } 707 718 -
wp-platform/trunk/plugin.php
r1505671 r1505732 2 2 /** 3 3 * Plugin Name: WP-Platform 4 * Version: 1.2. 04 * Version: 1.2.2 5 5 * Description: Provides platform to allow developers to build bespoke functionality in an MVC and OOP fashion 6 6 */
Note: See TracChangeset
for help on using the changeset viewer.