Contributions

Languages (Category Index)
Search: 

Heading Swapping Fix yikes... heading_swaping_fix

I haven't gotten any of the other heading key swap problem fixes to take... But this one!!! Thank, Goodness...

You know, that pesky module Heading Title changes to heading_title when you try to add or delete a module service.

Here is the fix that worked for me found at the FisheEye bugshop... by frank

http://svn.oscommerce.com/fisheye/changelog/osCommerce/branches?cs=1767

within includes/classes/language.php

change line 68

$Qdef->bindInt(':languages_id', $this->getData('id', $language_code));

to

$Qdef->bindInt(':languages_id', osC_Language::getData('id', $language_code));

Kind of funny how this fix was written two years ago and never made it into the alpha 5... I'm new to this, so am pretty impressed with the quality of code and framework overall. osC3 has a great future with this fix.

Expand All / Collapse All

Heading Swapping Fix yikes... heading_swaping_fix 19 Nov 2009

I haven't gotten any of the other heading key swap problem fixes to take... But this one!!! Thank, Goodness...

You know, that pesky module Heading Title changes to heading_title when you try to add or delete a module service.

Here is the fix that worked for me found at the FisheEye bugshop... by frank

http://svn.oscommerce.com/fisheye/changelog/osCommerce/branches?cs=1767

within includes/classes/language.php

change line 68

$Qdef->bindInt(':languages_id', $this->getData('id', $language_code));

to

$Qdef->bindInt(':languages_id', osC_Language::getData('id', $language_code));

Kind of funny how this fix was written two years ago and never made it into the alpha 5... I'm new to this, so am pretty impressed with the quality of code and framework overall. osC3 has a great future with this fix.

Note: Contributions are used at own risk.