mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-30 23:30:05 +00:00
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:
@@ -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 ) );
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user