Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
7de29914
Commit
7de29914
authored
Jan 08, 2008
by
Gábor Hojtsy
Browse files
#207731
by Pancho: adding brackets to some default form values, for consistency
parent
9b1172f2
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/system/system.admin.inc
View file @
7de29914
...
...
@@ -153,7 +153,7 @@ function system_settings_overview() {
function
system_admin_theme_settings
()
{
$themes
=
system_theme_data
();
ksort
(
$themes
);
$options
[
0
]
=
t
(
'System default'
);
$options
[
0
]
=
'<'
.
t
(
'System default'
)
.
'>'
;
foreach
(
$themes
as
$theme
)
{
$options
[
$theme
->
name
]
=
$theme
->
info
[
'name'
];
}
...
...
@@ -1283,7 +1283,7 @@ function system_performance_settings() {
);
$period
=
drupal_map_assoc
(
array
(
0
,
60
,
180
,
300
,
600
,
900
,
1800
,
2700
,
3600
,
10800
,
21600
,
32400
,
43200
,
86400
),
'format_interval'
);
$period
[
0
]
=
t
(
'none'
);
$period
[
0
]
=
'<'
.
t
(
'none'
)
.
'>'
;
$form
[
'page_cache'
][
'cache_lifetime'
]
=
array
(
'#type'
=>
'select'
,
'#title'
=>
t
(
'Minimum cache lifetime'
),
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment