Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Sign in
Toggle navigation
D
drupal
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Insights
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Drupal.org issue queue
Drupal.org issue queue
Security & Compliance
Security & Compliance
Dependency List
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
project
drupal
Commits
b3225af1
Commit
b3225af1
authored
Mar 29, 2003
by
Dries
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Fixed typo in the block delete link. Reported by Paul C.
parent
ab04177d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
modules/block.module
modules/block.module
+1
-1
modules/block/block.module
modules/block/block.module
+1
-1
No files found.
modules/block.module
View file @
b3225af1
...
...
@@ -143,7 +143,7 @@ function block_admin_display() {
foreach
(
$blocks
as
$block
)
{
if
(
$block
[
"module"
]
==
"block"
)
{
$edit
=
l
(
t
(
"edit"
),
"admin/block/edit/"
.
$block
[
"delta"
]);
$delete
=
l
(
t
(
"delete"
),
"admin/block/delete"
.
$block
[
"delta"
]);
$delete
=
l
(
t
(
"delete"
),
"admin/block/delete
/
"
.
$block
[
"delta"
]);
}
else
{
$edit
=
""
;
...
...
modules/block/block.module
View file @
b3225af1
...
...
@@ -143,7 +143,7 @@ function block_admin_display() {
foreach
(
$blocks
as
$block
)
{
if
(
$block
[
"module"
]
==
"block"
)
{
$edit
=
l
(
t
(
"edit"
),
"admin/block/edit/"
.
$block
[
"delta"
]);
$delete
=
l
(
t
(
"delete"
),
"admin/block/delete"
.
$block
[
"delta"
]);
$delete
=
l
(
t
(
"delete"
),
"admin/block/delete
/
"
.
$block
[
"delta"
]);
}
else
{
$edit
=
""
;
...
...
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