remove unreachable code
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@426 b3834d28-1941-0410-a4f8-b48e95affb8f
This commit is contained in:
parent
184099743b
commit
8d16356f75
2 changed files with 5 additions and 18 deletions
|
@ -34,9 +34,6 @@
|
||||||
*/
|
*/
|
||||||
class SemanticScuttle_Service_Vote extends SemanticScuttle_DbService
|
class SemanticScuttle_Service_Vote extends SemanticScuttle_DbService
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the single service instance
|
* Returns the single service instance
|
||||||
*
|
*
|
||||||
|
@ -98,10 +95,6 @@ class SemanticScuttle_Service_Vote extends SemanticScuttle_DbService
|
||||||
$row = $this->db->sql_fetchrow($dbres);
|
$row = $this->db->sql_fetchrow($dbres);
|
||||||
$this->db->sql_freeresult($dbres);
|
$this->db->sql_freeresult($dbres);
|
||||||
|
|
||||||
if (!$row) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return (int)$row['sum'];
|
return (int)$row['sum'];
|
||||||
}//public function getVoting(..)
|
}//public function getVoting(..)
|
||||||
|
|
||||||
|
@ -117,7 +110,8 @@ class SemanticScuttle_Service_Vote extends SemanticScuttle_DbService
|
||||||
*/
|
*/
|
||||||
public function getVotes($bookmark)
|
public function getVotes($bookmark)
|
||||||
{
|
{
|
||||||
$query = 'SELECT COUNT(vote) as count FROM ' . $this->getTableName()
|
$query = 'SELECT COUNT(vote) as count FROM '
|
||||||
|
. $this->getTableName()
|
||||||
. ' WHERE bid = "' . $this->db->sql_escape($bookmark) . '"';
|
. ' WHERE bid = "' . $this->db->sql_escape($bookmark) . '"';
|
||||||
|
|
||||||
if (!($dbres = $this->db->sql_query_limit($query, 1, 0))) {
|
if (!($dbres = $this->db->sql_query_limit($query, 1, 0))) {
|
||||||
|
@ -132,10 +126,6 @@ class SemanticScuttle_Service_Vote extends SemanticScuttle_DbService
|
||||||
$row = $this->db->sql_fetchrow($dbres);
|
$row = $this->db->sql_fetchrow($dbres);
|
||||||
$this->db->sql_freeresult($dbres);
|
$this->db->sql_freeresult($dbres);
|
||||||
|
|
||||||
if (!$row) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return (int)$row['count'];
|
return (int)$row['count'];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -152,7 +142,8 @@ class SemanticScuttle_Service_Vote extends SemanticScuttle_DbService
|
||||||
*/
|
*/
|
||||||
public function hasVoted($bookmark, $user)
|
public function hasVoted($bookmark, $user)
|
||||||
{
|
{
|
||||||
$query = 'SELECT COUNT(vote) as count FROM ' . $this->getTableName()
|
$query = 'SELECT COUNT(vote) as count FROM '
|
||||||
|
. $this->getTableName()
|
||||||
. ' WHERE'
|
. ' WHERE'
|
||||||
. ' bid = "' . $this->db->sql_escape($bookmark) . '"'
|
. ' bid = "' . $this->db->sql_escape($bookmark) . '"'
|
||||||
. ' AND uid = "' . $this->db->sql_escape($user) . '"';
|
. ' AND uid = "' . $this->db->sql_escape($user) . '"';
|
||||||
|
@ -169,10 +160,6 @@ class SemanticScuttle_Service_Vote extends SemanticScuttle_DbService
|
||||||
$row = $this->db->sql_fetchrow($dbres);
|
$row = $this->db->sql_fetchrow($dbres);
|
||||||
$this->db->sql_freeresult($dbres);
|
$this->db->sql_freeresult($dbres);
|
||||||
|
|
||||||
if (!$row) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
return (int)$row['count'] == 1;
|
return (int)$row['count'] == 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -147,7 +147,7 @@ class VoteTest extends TestBase
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test getVoting() when several votes have been cast.
|
* Test getVotes() when several votes have been cast.
|
||||||
*
|
*
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue