Skip to content

Commit

Permalink
DibiTranslator: temporary removed delimite() cache [Closes #21]
Browse files Browse the repository at this point in the history
  • Loading branch information
dg committed Aug 24, 2010
1 parent a64c227 commit 310d43f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dibi/libs/DibiTranslator.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ final class DibiTranslator extends DibiObject
public function __construct(IDibiDriver $driver)
{
$this->driver = $driver;
$this->identifiers = new DibiLazyStorage(array($this, 'delimite'));
}


Expand All @@ -68,6 +67,7 @@ public function __construct(IDibiDriver $driver)
*/
public function translate(array $args)
{
$this->identifiers = new DibiLazyStorage(array($this, 'delimite'));
$args = array_values($args);
while (count($args) === 1 && is_array($args[0])) { // implicit array expansion
$args = array_values($args[0]);
Expand Down

0 comments on commit 310d43f

Please sign in to comment.