Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Commits
77515308
Commit
77515308
authored
Aug 18, 2004
by
Dries Buytaert
Browse files
Options
Downloads
Patches
Plain Diff
- Small change to the wording of the 'note'.
parent
8050af67
No related branches found
No related tags found
2 merge requests
!7452
Issue #1797438. HTML5 validation is preventing form submit and not fully...
,
!789
Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.txt
+2
-4
2 additions, 4 deletions
CHANGELOG.txt
modules/upload.module
+1
-1
1 addition, 1 deletion
modules/upload.module
modules/upload/upload.module
+1
-1
1 addition, 1 deletion
modules/upload/upload.module
with
4 additions
and
6 deletions
CHANGELOG.txt
+
2
−
4
View file @
77515308
...
...
@@ -36,8 +36,7 @@ Drupal x.x.x, xxxx-xx-xx
- accessibility:
* improved the accessibility of the archive module's calendar.
* improved form handling and error reporting.
* added HTTP redirects to prevent submitting twice when refreshing right
after a form submission
* added HTTP redirects to prevent submitting twice when refreshing right after a form submission.
- refactored 403 (forbidden) handling and added support for custom 403 pages.
- documentation:
* added PHPDoc/Doxygen comments.
...
...
@@ -46,8 +45,7 @@ Drupal x.x.x, xxxx-xx-xx
* expanded the embedded PHP-code feature so it can be used everywhere
* added support for role-dependant filtering, through input formats
- UI translation:
* managing translations is now completely done through the administration
interface
* managing translations is now completely done through the administration interface
* added support for importing/exporting gettext .po files
Drupal 4.4.2, 2004-07-04
...
...
This diff is collapsed.
Click to expand it.
modules/upload.module
+
1
−
1
View file @
77515308
...
...
@@ -291,7 +291,7 @@ function upload_form($node) {
}
if
(
count
(
$node
->
files
))
{
$output
=
form_item
(
''
,
theme
(
'table'
,
$header
,
$rows
),
t
(
'Note:
C
hanges made to the attachments
list
are not permanent until you save this
node
.'
));
$output
=
form_item
(
''
,
theme
(
'table'
,
$header
,
$rows
),
t
(
'Note:
c
hanges made to the attachments are not permanent until you save this
post
.'
));
}
$output
.
=
form_file
(
t
(
'Attach new file'
),
"upload"
,
40
);
$output
.
=
form_button
(
t
(
'Attach'
),
'fileop'
);
...
...
This diff is collapsed.
Click to expand it.
modules/upload/upload.module
+
1
−
1
View file @
77515308
...
...
@@ -291,7 +291,7 @@ function upload_form($node) {
}
if
(
count
(
$node
->
files
))
{
$output
=
form_item
(
''
,
theme
(
'table'
,
$header
,
$rows
),
t
(
'Note:
C
hanges made to the attachments
list
are not permanent until you save this
node
.'
));
$output
=
form_item
(
''
,
theme
(
'table'
,
$header
,
$rows
),
t
(
'Note:
c
hanges made to the attachments are not permanent until you save this
post
.'
));
}
$output
.
=
form_file
(
t
(
'Attach new file'
),
"upload"
,
40
);
$output
.
=
form_button
(
t
(
'Attach'
),
'fileop'
);
...
...
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