Make WordPress Core


Ignore:
Timestamp:
01/02/2008 05:31:00 PM (17 years ago)
Author:
ryan
Message:

Properly close tags. Props ionfish. fixes #5568

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/functions.php

    r6514 r6535  
    16371637            trigger_error( printf( __("%s is <strong>deprecated</strong> since version %s! Use %s instead."), $function, $version, $replacement ) );
    16381638        else
    1639             trigger_error( printf( __("%s is <strong>deprecated</strong since version %s with no alternative available."), $function, $version ) );
     1639            trigger_error( printf( __("%s is <strong>deprecated</strong> since version %s with no alternative available."), $function, $version ) );
    16401640    }
    16411641}
     
    16721672            trigger_error( printf( __("%s is <strong>deprecated</strong> since version %s! Use %s instead."), $file, $version, $replacement ) );
    16731673        else
    1674             trigger_error( printf( __("%s is <strong>deprecated</strong since version %s with no alternative available."), $file, $version ) );
     1674            trigger_error( printf( __("%s is <strong>deprecated</strong> since version %s with no alternative available."), $file, $version ) );
    16751675    }
    16761676}
Note: See TracChangeset for help on using the changeset viewer.