- Patch #542658 by sun, Gábor Hojtsy, pwolanin: move action tabs out of local tasks.

merge-requests/26/head
Dries Buytaert 2009-08-22 20:10:38 +00:00
parent 333303009b
commit 7ad9777c45
2 changed files with 1 additions and 25 deletions

View File

@ -733,7 +733,7 @@ function system_menu() {
'access arguments' => array('admin/config/media', 'access administration pages'),
);
$items['admin/config/media/file-system'] = array(
'title' => 'File-system',
'title' => 'File system',
'description' => 'Tell Drupal where to store uploaded files and how they are accessed.',
'page callback' => 'drupal_get_form',
'page arguments' => array('system_file_system_settings'),

View File

@ -220,17 +220,6 @@ ini_set('session.gc_maxlifetime', 200000);
*/
ini_set('session.cookie_lifetime', 2000000);
/**
* If you encounter a situation where users post a large amount of text, and
* the result is stripped out upon viewing but can still be edited, Drupal's
* output filter may not have sufficient memory to process it. If you
* experience this issue, you may wish to uncomment the following two lines
* and increase the limits of these variables. For more information, see
* http://php.net/manual/en/pcre.configuration.php.
*/
# ini_set('pcre.backtrack_limit', 200000);
# ini_set('pcre.recursion_limit', 200000);
/**
* Drupal automatically generates a unique session cookie name for each site
* based on on its full domain name. If you have multiple domains pointing at
@ -352,16 +341,3 @@ $conf = array(
# $conf['blocked_ips'] = array(
# 'a.b.c.d',
# );
/**
* Page caching:
*
* To use a caching backend that does not use the database for page cache,
* set cache_inc to the file which provides this backend and set
* page_cache_without_database to TRUE. For additional speedup,
* page_cache_invoke_hooks can be set to FALSE to skip calling hook_boot and
* hook_exit which are the only hooks fired during serving a cached page.
*/
# $conf['cache_inc'] = DRUPAL_ROOT . '/sites/all/modules/memcache/memcache.inc';
# $conf['page_cache_without_database'] = TRUE;
# $conf['page_cache_invoke_hooks'] = FALSE;