Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
ctools
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
drupal.org
ctools
Commits
83b9366a
Commit
83b9366a
authored
16 years ago
by
Earl Miles
Browse files
Options
Downloads
Patches
Plain Diff
#366551: Missing {} around table name.
parent
673cfd68
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
delegator/plugins/tasks/page.admin.inc
+1
-1
1 addition, 1 deletion
delegator/plugins/tasks/page.admin.inc
with
1 addition
and
1 deletion
delegator/plugins/tasks/page.admin.inc
+
1
−
1
View file @
83b9366a
...
@@ -493,7 +493,7 @@ function delegator_page_form_basic_validate(&$form, &$form_state) {
...
@@ -493,7 +493,7 @@ function delegator_page_form_basic_validate(&$form, &$form_state) {
}
}
$path
=
implode
(
'/'
,
$path
);
$path
=
implode
(
'/'
,
$path
);
$result
=
db_query
(
"SELECT * FROM menu_router WHERE path = '%s'"
,
$path
);
$result
=
db_query
(
"SELECT * FROM
{
menu_router
}
WHERE path = '%s'"
,
$path
);
while
(
$router
=
db_fetch_object
(
$result
))
{
while
(
$router
=
db_fetch_object
(
$result
))
{
if
(
$router
->
page_callback
!=
'delegator_page_execute'
)
{
if
(
$router
->
page_callback
!=
'delegator_page_execute'
)
{
form_error
(
$form
[
'path'
],
t
(
'That path is already in used. This system cannot override existing paths.'
));
form_error
(
$form
[
'path'
],
t
(
'That path is already in used. This system cannot override existing paths.'
));
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment