🔧 use uniqid() instead of md5() to generate the cid
This commit is contained in:
parent
cc6777e206
commit
794a68c781
1 changed files with 1 additions and 1 deletions
|
@ -212,7 +212,7 @@ class CRM_TwingleCampaign_BAO_TwingleCampaign {
|
||||||
*/
|
*/
|
||||||
private
|
private
|
||||||
function createCid() {
|
function createCid() {
|
||||||
$this->values['cid'] = md5($this->id . '_' . $this->values['name']);
|
$this->values['cid'] = uniqid();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue