Skip to content

Commit

Permalink
Fixing some Strict Standards Warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
klederson committed Jan 22, 2013
1 parent 150c135 commit 8ad71d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/libs/Dialect/Dialect.php
Expand Up @@ -75,7 +75,7 @@ public function find($pk = null) {
$modelName = get_class($this->getModel());

if ($sql != null) {
$this->resultSet = &$this->execute($sql);
$this->resultSet = $this->execute($sql);
} else {
PhpBURN_Message::output("[!No query found!] - <b>$modelName</b>");
return false;
Expand Down
2 changes: 1 addition & 1 deletion app/libs/Model.php
Expand Up @@ -1149,7 +1149,7 @@ public function getDialect() {
*/
public function getConnection() {
//return $this->_connObj;
return PhpBURN_ConnectionManager::create(PhpBURN_Configuration::getConfig($this->_package));
return @PhpBURN_ConnectionManager::create(PhpBURN_Configuration::getConfig($this->_package));
}

/**
Expand Down

0 comments on commit 8ad71d1

Please sign in to comment.