This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/src/Aura/Sql/Connection/AbstractConnection.php b/src/Aura/Sql/Connection/AbstractConnection.php | |
| index 467498c..2dca2a5 100644 | |
| --- a/src/Aura/Sql/Connection/AbstractConnection.php | |
| +++ b/src/Aura/Sql/Connection/AbstractConnection.php | |
| @@ -72,6 +72,8 @@ abstract class AbstractConnection | |
| */ | |
| protected $password; | |
| + protected $profiler; | |
| + |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public function value(&$value, $method, $name) | |
| { | |
| // get the params | |
| $params = func_get_args(); | |
| array_shift($params); // $value | |
| array_shift($params); // $method | |
| array_shift($params); // $name | |
| // set up the field name and data | |
| $field = 'field'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * @copyright Copyright (C) 1999-2012 eZ Systems AS. All rights reserved. | |
| * @license http://www.gnu.org/licenses/gpl-2.0.txt GNU General Public License v2 | |
| */ | |
| $FunctionList = array(); | |
| $FunctionList['locale_list'] = array( | |
| 'name' => 'locale_list', |
NewerOlder