Minor - Remove check on MAX_FILE_SIZE in the admin settings update as it is NOT a setting for Chamilo, just a setting for the form

1.9.x
Yannick Warnier 12 years ago
parent f61ce49676
commit 40300fae68
  1. 1
      main/admin/settings.php

@ -238,6 +238,7 @@ if (!empty($_GET['category']) && !in_array($_GET['category'], array('Plugins', '
$keys = array();
foreach ($values as $key => $value) {
if (strcmp($key,'MAX_FILE_SIZE')===0) { continue; }
if (in_array($key, $settings_to_avoid)) { continue; }
// Avoid form elements which have nothing to do with settings
if ($key == 'search_field' or $key == 'submit_fixed_in_bottom') { continue; }

Loading…
Cancel
Save