English_________________
if you edit in admin / modules.php and the changes haven't effect, make the following change.

Locate the next code:

case 'save':
while (list ($ key, $ value) = each ($ HTTP_POST_VARS [ 'configuration'])) (

Replace with this:

case 'save':
while (list ($ key, $ value) = each ($ _POST [ 'configuration'])) (


Español________________
Si al editar en admin/modules.php no nos actualiza los cambios, realiza la siguiente modificación.

Locate the next code:

case 'save':
while (list($key, $value) = each($HTTP_POST_VARS['configuration'])) {

Replace with this:

case 'save':
while (list($key, $value) = each($_POST['configuration'])) {

More...