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
fe7faf76
Commit
fe7faf76
authored
Aug 02, 2007
by
Dries
Browse files
- Patch
#162829
by swentel and bennybobw: fixed problem with saving taxonomy terms.
parent
bf7a70f9
Changes
1
Show whitespace changes
Inline
Side-by-side
modules/taxonomy/taxonomy.admin.inc
View file @
fe7faf76
...
@@ -153,7 +153,7 @@ function taxonomy_admin_vocabulary_edit($vocabulary) {
...
@@ -153,7 +153,7 @@ function taxonomy_admin_vocabulary_edit($vocabulary) {
* Page to edit a vocabulary term.
* Page to edit a vocabulary term.
*/
*/
function
taxonomy_admin_term_edit
(
$tid
)
{
function
taxonomy_admin_term_edit
(
$tid
)
{
if
((
isset
(
$_POST
[
'op'
])
&&
$_POST
[
'op'
]
)
==
t
(
'Delete'
)
||
isset
(
$_POST
[
'confirm'
]))
{
if
((
isset
(
$_POST
[
'op'
])
&&
$_POST
[
'op'
]
==
t
(
'Delete'
)
)
||
isset
(
$_POST
[
'confirm'
]))
{
return
drupal_get_form
(
'taxonomy_term_confirm_delete'
,
$tid
);
return
drupal_get_form
(
'taxonomy_term_confirm_delete'
,
$tid
);
}
}
if
(
$term
=
(
array
)
taxonomy_get_term
(
$tid
))
{
if
(
$term
=
(
array
)
taxonomy_get_term
(
$tid
))
{
...
...
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