Line 303 of /includes/classes/install.class.php reads
<a href="../admin.php">"admin.php"</a> to acces the Comikaze administration
I believe this should read
<a href="../admin.php">"admin.php"</a> to access the Comikaze administration
Lines 133-140 of /includes/classes/config.class.php read as follows
if (!$this->updateConfigValue('but_first_active', $data['BfirstA']))
return ccm_message::error("Could not update 'First Button (active)'");
if (!$this->updateConfigValue('but_first_disabled', $data['BfirstD']))
return ccm_message::error("Could not update 'First Button (disabled)'");
if (!$this->updateConfigValue('but_prev_active', $data['BprevA']))
return ccm_message::error("Could not update 'First Button (active)");
if (!$this->updateConfigValue('but_prev_disabled', $data['BprevD']))
return ccm_message::error("Could not update 'Prev Button (disabled)'");
I show the above to show context. As for lines 137 and 138 that read:
if (!$this->updateConfigValue('but_prev_active', $data['BprevA']))
return ccm_message::error("Could not update 'First Button (active)");
I believe they should read as follows:
if (!$this->updateConfigValue('but_prev_active', $data['BprevA']))
return ccm_message::error("Could not update 'Prev Button (active)");
To be consistent, Line 146 of /includes/classes/config.class.php which reads
return ccm_message::error("Could not update 'NextButton (disabled)'");
should probably read
return ccm_message::error("Could not update 'Next Button (disabled)'");
File /includes/classes/comicdo.php Line 361 Is:
return ccm_message::error("Directory - $fileDir - is not writable. You comic and " .
Recommended:
return ccm_message::error("Directory - $fileDir - is not writable. Your comic and " .