X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/9c40b4d36daed9e28e48a5fe9205c32557195a4b..4f9d63e13cd8c6e275797c75b401b074b82937bc:/wp-includes/pomo/entry.php diff --git a/wp-includes/pomo/entry.php b/wp-includes/pomo/entry.php index bb146a7d..07ddfd4d 100644 --- a/wp-includes/pomo/entry.php +++ b/wp-includes/pomo/entry.php @@ -2,12 +2,12 @@ /** * Contains Translation_Entry class * - * @version $Id: entry.php 13 2008-04-21 12:03:37Z nbachiyski $ + * @version $Id: entry.php 406 2010-02-07 11:10:24Z nbachiyski $ * @package pomo * @subpackage entry */ - +if ( !class_exists( 'Translation_Entry' ) ): /** * Translation_Entry class encapsulates a translatable string */ @@ -46,11 +46,8 @@ class Translation_Entry { return; } // get member variable values from args hash - $object_varnames = array_keys(get_object_vars($this)); foreach ($args as $varname => $value) { - if (in_array($varname, $object_varnames)) { - $this->$varname = $value; - } + $this->$varname = $value; } if (isset($args['plural'])) $this->is_plural = true; if (!is_array($this->translations)) $this->translations = array(); @@ -69,4 +66,4 @@ class Translation_Entry { return is_null($this->context)? $this->singular : $this->context.chr(4).$this->singular; } } -?> +endif; \ No newline at end of file