Properly close tags. Props ionfish. fixes #5568

git-svn-id: https://develop.svn.wordpress.org/trunk@6535 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2008-01-02 17:31:00 +00:00
parent 851481d869
commit 8f6679c739
1 changed files with 2 additions and 2 deletions

View File

@ -1636,7 +1636,7 @@ function _deprecated_function($function, $version, $replacement=null) {
if( !is_null($replacement) )
trigger_error( printf( __("%s is <strong>deprecated</strong> since version %s! Use %s instead."), $function, $version, $replacement ) );
else
trigger_error( printf( __("%s is <strong>deprecated</strong since version %s with no alternative available."), $function, $version ) );
trigger_error( printf( __("%s is <strong>deprecated</strong> since version %s with no alternative available."), $function, $version ) );
}
}
@ -1671,7 +1671,7 @@ function _deprecated_file($file, $version, $replacement=null) {
if( !is_null($replacement) )
trigger_error( printf( __("%s is <strong>deprecated</strong> since version %s! Use %s instead."), $file, $version, $replacement ) );
else
trigger_error( printf( __("%s is <strong>deprecated</strong since version %s with no alternative available."), $file, $version ) );
trigger_error( printf( __("%s is <strong>deprecated</strong> since version %s with no alternative available."), $file, $version ) );
}
}
?>