Remove unnecessary return by refs. Props wonderboymusic. fixes #21839

git-svn-id: http://core.svn.wordpress.org/trunk@21792 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Ryan Boren
2012-09-10 17:00:11 +00:00
parent daa6757a9b
commit f483a85676
9 changed files with 21 additions and 21 deletions

View File

@@ -215,7 +215,7 @@ class MO extends Gettext_Translations {
* @param string $translation translation string from MO file. Might contain
* 0x00 as a plural translations separator
*/
function &make_entry($original, $translation) {
function make_entry($original, $translation) {
$entry = new Translation_Entry();
// look for context
$parts = explode(chr(4), $original);