comparison modules/system/system.admin.inc @ 19:3edae6ecd6c6 6.9

Drupal 6.9
author Franck Deroche <franck@defr.org>
date Thu, 15 Jan 2009 10:15:56 +0100
parents 4347c45bb494
children
comparison
equal deleted inserted replaced
18:f5131a9cd9e5 19:3edae6ecd6c6
1 <?php 1 <?php
2 // $Id: system.admin.inc,v 1.63.2.5 2008/11/26 13:54:33 dries Exp $ 2 // $Id: system.admin.inc,v 1.63.2.6 2009/01/06 13:33:24 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
1349 return system_settings_form($form); 1352 return system_settings_form($form);
1350 } 1353 }
1351 1354
1352 /** 1355 /**
1353 * Submit callback; clear system caches. 1356 * Submit callback; clear system caches.