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
c14b03b6
Commit
c14b03b6
authored
Oct 14, 2008
by
Dries
Browse files
- Patch
#320747
by lilou, UltimateBoy: removed double semicolons.
parent
63d0ea99
Changes
4
Hide whitespace changes
Inline
Side-by-side
modules/filter/filter.module
View file @
c14b03b6
...
...
@@ -1100,7 +1100,7 @@ function _filter_xss_attributes($attr) {
$thisval
=
filter_xss_bad_protocol
(
$match
[
1
]);
if
(
!
$skip
)
{
$attrarr
[]
=
"
$attrname
='
$thisval
'"
;
;
$attrarr
[]
=
"
$attrname
='
$thisval
'"
;
}
$working
=
1
;
$mode
=
0
;
$attr
=
preg_replace
(
"/^'[^']*'(\s+|$)/"
,
''
,
$attr
);
...
...
modules/simpletest/simpletest.module
View file @
c14b03b6
...
...
@@ -274,7 +274,7 @@ function theme_simpletest_test_table($table) {
return
'<strong>'
.
t
(
'No tests to display.'
)
.
'</strong>'
;
}
else
{
return
theme
(
'table'
,
$header
,
$rows
,
array
(
'id'
=>
'simpletest-form-table'
));
;
return
theme
(
'table'
,
$header
,
$rows
,
array
(
'id'
=>
'simpletest-form-table'
));
}
}
...
...
modules/system/system.module
View file @
c14b03b6
...
...
@@ -2054,7 +2054,7 @@ function system_goto_action($object, $context) {
*/
function
system_block_ip_action
()
{
$ip
=
ip_address
();
db_query
(
"INSERT INTO
{
blocked_ips
}
(ip) VALUES ('%s')"
,
$ip
);
;
db_query
(
"INSERT INTO
{
blocked_ips
}
(ip) VALUES ('%s')"
,
$ip
);
watchdog
(
'action'
,
'Banned IP address %ip'
,
array
(
'%ip'
=>
$ip
));
}
...
...
modules/taxonomy/taxonomy.admin.inc
View file @
c14b03b6
...
...
@@ -627,7 +627,7 @@ function taxonomy_form_term(&$form_state, $vocabulary, $edit = array()) {
$form
[
'#term'
]
=
$edit
;
$form
[
'#term'
][
'parent'
]
=
$parent
;
$form
[
'#vocabulary'
]
=
(
array
)
$vocabulary
;
$form
[
'#vocabulary'
][
'nodes'
]
=
drupal_map_assoc
(
$vocabulary
->
nodes
);
;
$form
[
'#vocabulary'
][
'nodes'
]
=
drupal_map_assoc
(
$vocabulary
->
nodes
);
// Check for confirmation forms.
if
(
isset
(
$form_state
[
'confirm_delete'
]))
{
...
...
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