Changeset 10377

Show
Ignore:
Timestamp:
10/08/10 14:07:12 (3 years ago)
Author:
mickecarlsson
Message:

Fixed spelling errors in config.php

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • freepbx/trunk/amp_conf/htdocs/admin/config.php

    r10122 r10377  
    9595       * Looks for "module" and "file" variables, strips .. and only allows normal filename characters. 
    9696       * Accepts only files of the type listed in $allowed_exts below, and sends the corresponding mime-type,  
    97        * and always interprets files through the PHP interpreter. (Most of?) the freepbx environment is available, 
     97       * and always interprets files through the PHP interpreter. (Most of?) the FreePBX environment is available, 
    9898       * including $db and $astman, and the user is authenticated. 
    9999       */ 
     
    264264 
    265265  // call every modules _configpageinit function which should just 
    266   // register the gui and process functions for each module, if relevent 
     266  // register the gui and process functions for each module, if relevant 
    267267  // for this $display 
    268268  foreach ($configpageinits as $func) { 
     
    305305    $module_file = 'modules/'.$module_name.'/page.'.$module_page.'.php'; 
    306306 
    307     //TODO Determine which item is this module displaying. Currently this is over the place, we should standarize on a "itemid" request var for now, we'll just cover all possibilities :-( 
     307    //TODO Determine which item is this module displaying. Currently this is over the place, we should standardize on a "itemid" request var for now, we'll just cover all possibilities :-( 
    308308    $possibilites = array( 
    309309      'userdisplay', 
     
    357357  break; 
    358358  case 'modules': 
    359     // set these to avoide undefined variable warnings later 
     359    // set these to avoid undefined variable warnings later 
    360360    // 
    361361    $module_name = 'modules';