framework/Data/Common/TDbCommandBuilder.php 1 location
|
@@ 229-232 (lines=4) @@
|
| 226 |
|
continue; |
| 227 |
|
} |
| 228 |
|
|
| 229 |
|
if (strpos($key, '(') !== false && strpos($key, ')') !== false) { |
| 230 |
|
$result[] = $key; |
| 231 |
|
continue; |
| 232 |
|
} |
| 233 |
|
|
| 234 |
|
if (stripos($key, 'AS') !== false) { |
| 235 |
|
$result[] = $key; |
framework/Exceptions/TErrorHandler.php 1 location
|
@@ 397-399 (lines=3) @@
|
| 394 |
|
$result = $this->getPropertyAccessTrace($trace, '__set'); |
| 395 |
|
} |
| 396 |
|
} |
| 397 |
|
if ($result !== null && strpos($result['file'], ': eval()\'d code') !== false) { |
| 398 |
|
return null; |
| 399 |
|
} |
| 400 |
|
|
| 401 |
|
return $result; |
| 402 |
|
} |