Mercurial > defr > drupal > core
comparison modules/system/system.admin.inc @ 15:4347c45bb494 6.7
Drupal 6.7
| author | Franck Deroche <webmaster@defr.org> |
|---|---|
| date | Tue, 23 Dec 2008 14:32:44 +0100 |
| parents | 8b6c45761e01 |
| children | 3edae6ecd6c6 |
comparison
equal
deleted
inserted
replaced
| 14:626fcabfa4b8 | 15:4347c45bb494 |
|---|---|
| 1 <?php | 1 <?php |
| 2 // $Id: system.admin.inc,v 1.63.2.4 2008/10/16 20:23:37 dries Exp $ | 2 // $Id: system.admin.inc,v 1.63.2.5 2008/11/26 13:54:33 dries Exp $ |
| 3 | 3 |
| 4 /** | 4 /** |
| 5 * @file | 5 * @file |
| 6 * Admin page callbacks for the system module. | 6 * Admin page callbacks for the system module. |
| 7 */ | 7 */ |
| 1344 '#type' => 'submit', | 1344 '#type' => 'submit', |
| 1345 '#value' => t('Clear cached data'), | 1345 '#value' => t('Clear cached data'), |
| 1346 '#submit' => array('system_clear_cache_submit'), | 1346 '#submit' => array('system_clear_cache_submit'), |
| 1347 ); | 1347 ); |
| 1348 | 1348 |
| 1349 $form['#submit'][] = 'drupal_clear_css_cache'; | |
| 1350 $form['#submit'][] = 'drupal_clear_js_cache'; | |
| 1351 | |
| 1352 return system_settings_form($form); | 1349 return system_settings_form($form); |
| 1353 } | 1350 } |
| 1354 | 1351 |
| 1355 /** | 1352 /** |
| 1356 * Submit callback; clear system caches. | 1353 * Submit callback; clear system caches. |
