Remove unnecessary @type check.

This commit is contained in:
Dave Longley 2011-12-17 21:01:13 -05:00
parent a024be9607
commit 31181efa26
1 changed files with 4 additions and 4 deletions

View File

@ -2735,8 +2735,8 @@ function _subframe(
$vars = get_object_vars($value); $vars = get_object_vars($value);
foreach($vars as $key => $v) foreach($vars as $key => $v)
{ {
// skip keywords and type // skip keywords
if(strpos($key, '@') !== 0 and $key !== '@type') if(strpos($key, '@') !== 0)
{ {
// get the subframe if available // get the subframe if available
if(property_exists($frame, $key)) if(property_exists($frame, $key))
@ -2773,8 +2773,8 @@ function _subframe(
// iterate over frame keys to add any missing values // iterate over frame keys to add any missing values
foreach($frame as $key => $f) foreach($frame as $key => $f)
{ {
// skip keywords, type query, and non-null keys in value // skip keywords and non-null keys in value
if(strpos($key, '@') !== 0 and $key !== '@type' and if(strpos($key, '@') !== 0 and
(!property_exists($value, $key) || $value->{$key} === null)) (!property_exists($value, $key) || $value->{$key} === null))
{ {
// add empty array to value // add empty array to value