|
@@ -286,6 +286,20 @@ abstract class AbstractDao {
|
|
|
if (!$result) {
|
|
|
return false;
|
|
|
}
|
|
|
+
|
|
|
+ foreach ($result as & $tmpV) {
|
|
|
+ $tmpExtend = array();
|
|
|
+ $tmpExtend = unserialize($tmpV['extend']);
|
|
|
+ unset($tmpV['extend']);
|
|
|
+
|
|
|
+
|
|
|
+ if (is_array($tmpExtend)) foreach ($tmpExtend as $tmpKK => $tmpVV) {
|
|
|
+ if (!in_array($tmpKK, $this->real_field)) {
|
|
|
+ $tmpV[$tmpKK] = $tmpVV;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
return $result;
|
|
|
}
|
|
|
|