Fix issue about ‘bVotes’ and ‘bVoting’ not having default values
This commit is contained in:
parent
9f843178bc
commit
ca9225972f
1 changed files with 3 additions and 1 deletions
|
@ -504,7 +504,9 @@ class SemanticScuttle_Service_Bookmark extends SemanticScuttle_DbService
|
|||
'bPrivateNote' => $privateNote,
|
||||
'bStatus' => intval($status),
|
||||
'bHash' => $this->getHash($address),
|
||||
'bShort' => $short
|
||||
'bShort' => $short,
|
||||
'bVotes' => 0,
|
||||
'bVoting' => 0,
|
||||
);
|
||||
|
||||
$sql = 'INSERT INTO '. $this->getTableName()
|
||||
|
|
Loading…
Reference in a new issue