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
40026812
Commit
40026812
authored
Oct 11, 2008
by
webchick
Browse files
#319714
by greggles: Remove needless double-check_url()ing in maintenance.tpl.php.
parent
b9e99817
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/node/node.pages.inc
View file @
40026812
...
...
@@ -184,7 +184,7 @@ function node_form(&$form_state, $node) {
'#title'
=>
t
(
'Authored by'
),
'#maxlength'
=>
60
,
'#autocomplete_path'
=>
'user/autocomplete'
,
'#default_value'
=>
$node
->
name
?
$node
->
name
:
''
,
'#default_value'
=>
!
empty
(
$node
->
name
)
?
$node
->
name
:
''
,
'#weight'
=>
-
1
,
'#description'
=>
t
(
'Leave blank for %anonymous.'
,
array
(
'%anonymous'
=>
variable_get
(
'anonymous'
,
t
(
'Anonymous'
)))),
);
...
...
themes/garland/maintenance-page.tpl.php
View file @
40026812
...
...
@@ -49,9 +49,9 @@
$site_html
=
implode
(
' '
,
$site_fields
);
if
(
$logo
||
$site_title
)
{
print
'<h1><a href="'
.
check_url
(
$base_path
)
.
'" title="'
.
$site_title
.
'">'
;
print
'<h1><a href="'
.
$base_path
.
'" title="'
.
$site_title
.
'">'
;
if
(
$logo
)
{
print
'<img src="'
.
check_url
(
$logo
)
.
'" alt="'
.
$site_title
.
'" id="logo" />'
;
print
'<img src="'
.
$logo
.
'" alt="'
.
$site_title
.
'" id="logo" />'
;
}
print
$site_html
.
'</a></h1>'
;
}
...
...
Write
Preview
Markdown
is supported
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