@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | */ |
75 | 75 | private function _updateMetaDatumByFunctionName( $iObjectID, $_vValue, array $aSavedMeta, $_sSectionOrFieldID, $_sFunctionName ) { |
76 | 76 | |
77 | - if ( is_null( $_vValue ) ) { |
|
77 | + if ( is_null( $_vValue ) ) { |
|
78 | 78 | return; |
79 | 79 | } |
80 | 80 | |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | |
87 | 87 | // PHP can compare even array contents with the == operator. See http://www.php.net/manual/en/language.operators.array.php |
88 | 88 | // if the input value and the saved meta value are the same, no need to update it. |
89 | - if ( $_vValue == $_vSavedValue ) { |
|
89 | + if ( $_vValue == $_vSavedValue ) { |
|
90 | 90 | return; |
91 | 91 | } |
92 | 92 |