Closed (fixed)
Project:
Drigg
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
21 Apr 2009 at 10:00 UTC
Updated:
18 Jun 2009 at 04:40 UTC
Hello, I am not going to describe the bug, I just give you the way to correct it, if you need more information I can give them later.
In drigg_promotion.module at line 153:
$m = "Karma is $karma, vote is $v[0]['value'], threshold is $threshold, promoting node $v[0]['content_id'], vote id: $v[0]['vote_id'], and time is ". time() ."!";
should be replaced by:
$m = "Karma is $karma, vote is ".$v[0]['value'].", threshold is $threshold, promoting node ".$v[0]['content_id'].", vote id: ".$v[0]['vote_id'].", and time is ". time() ."!";
tested and working.
Comments
Comment #1
philbar commentedMissing some periods?
I don't know PHP enough to determine the bug in this. But marking it as such since the description implies it.
Comment #2
mercmobily commentedHi,
fixed in CVS.
Merc.