Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions bol/action_data_dao.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class PRIVACY_BOL_ActionDataDao extends OW_BaseDao
{
const ACTION = 'key';
const USER_ID = 'userId';
const PLUGIN_KEY = 'plugin_key';
const PLUGIN_KEY = 'pluginKey';
const VALUE = 'value';

/**
Expand Down Expand Up @@ -163,10 +163,10 @@ public function deleteByPluginKey( $pluginKey )
}

$example = new OW_Example();
$example->andFieldEqual(self::USER_ID, $pluginKey);
$example->andFieldEqual(self::PLUGIN_KEY, $pluginKey);

$this->deleteByExample($example);

return $this->dbo->getAffectedRows();
}
}
}