Hi,

Could you please let me know how to disable the bible chapter data. I've tried going to config under bible module settings and unticking the Active Bible data box, but when you save the changes, the box just ticks itself again and all the bible chapter data is still displayed...

Comments

MikeLee_Birdy’s picture

Dear Drup-rider:
Yes, this is a bug. Please modify line 814: at the last place
variable_set('bibledata_active', $bibledata['activebibledata']=='1');
Add [ =='1' ] will solve the problem you encountered.
And, to avoid another bug, you can modify the following lines:
if (isset($bibledata['bdtype'])) { <-- Add this line
foreach ($bibledata['bdtype'] as $bd) {
if ($bd == "commentary") $bdtype .= 'C';
if ($bd == "music") $bdtype .= 'M';
if ($bd == "refverse") $bdtype .= 'R';
if ($bd == "dailyread") $bdtype .= 'D';
if ($bd == "sermon") $bdtype .= 'S';
if ($bd == "misc") $bdtype .= 'X';
}
} <-- Add this line

Thanks for your bug report.
MikeLee

Kriss-dupe’s picture

Status: Active » Fixed

Been here too long, clearing up for efficiency.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.