Skip to content
This repository has been archived by the owner on Sep 10, 2021. It is now read-only.

Commit

Permalink
STYLE: refs #236. Fix style warning in UserapiModel.php
Browse files Browse the repository at this point in the history
  • Loading branch information
zachmullen committed Sep 7, 2011
1 parent 03145a5 commit 50329c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/api/models/pdo/UserapiModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ function getToken($email, $apikey, $appname)
->from(array('u' => 'api_userapi'))
->where('u.user_id = ?', $userDao->getKey())
->where('u.application_name = ?', $appname)
->where('u.apikey = ?', $apikey) ;
->where('u.apikey = ?', $apikey);

$row = $this->database->fetchRow($sql);
$userapiDao = $this->initDao('Userapi', $row, 'api');
Expand Down

0 comments on commit 50329c4

Please sign in to comment.