Plugin Directory

Changeset 765163


Ignore:
Timestamp:
08/31/2013 03:43:39 PM (13 years ago)
Author:
mendezki
Message:

Fixes missing semicolon

File:
1 edited

Legend:

Unmodified
Added
Removed
  • dutchdate/trunk/mp_dutchdate.php

    r752266 r765163  
    44Plugin URI: http://multipop.org/dutchdate
    55Description: Translates english months and days output from WordPress template tags to their dutch equivalent.
    6 Version: 1.8
     6Version: 1.9
    77Author: Barry Ceelen
    88Author URI: http://multipop.org
     
    4242}
    4343
    44 add_filter('the_time', 'multipop_date_replace');
    45 add_filter('the_date', 'multipop_date_replace');
    46 add_filter('get_the_time', 'multipop_date_replace');
    47 add_filter('get_the_date', 'multipop_date_replace');
    48 add_filter('the_modified_time', 'multipop_date_replace');
    49 add_filter('the_modified_date', 'multipop_date_replace');
    50 add_filter('get_the_modified_time', 'multipop_date_replace');
    51 add_filter('get_the_modified_date', 'multipop_date_replace')
     44add_filter( 'the_time', 'multipop_date_replace' );
     45add_filter( 'the_date', 'multipop_date_replace' );
     46add_filter( 'get_the_time', 'multipop_date_replace' );
     47add_filter( 'get_the_date', 'multipop_date_replace' );
     48add_filter( 'the_modified_time', 'multipop_date_replace' );
     49add_filter( 'the_modified_date', 'multipop_date_replace' );
     50add_filter( 'get_the_modified_time', 'multipop_date_replace' );
     51add_filter( 'get_the_modified_date', 'multipop_date_replace' );
Note: See TracChangeset for help on using the changeset viewer.