Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
2f0657bc
Commit
2f0657bc
authored
Nov 23, 2007
by
Dries Buytaert
Browse files
- Removing excessive whitespace.
parent
4d6c7bd4
Changes
6
Hide whitespace changes
Inline
Side-by-side
INSTALL.txt
View file @
2f0657bc
...
...
@@ -128,8 +128,8 @@ INSTALLATION
7. REVIEW FILE SYSTEM STORAGE SETTINGS
The files directory created in step 3 is the default file system path used
to store all uploaded files, as well as some temporary files created by Drupal.
The files directory created in step 3 is the default file system path used
to store all uploaded files, as well as some temporary files created by Drupal.
After installation, the settings for the file system path may be modified
to store uploaded files in a different location.
...
...
@@ -159,7 +159,7 @@ INSTALLATION
* Ensure that the new location for the path is writable by the web
server process. To grant write permissions for a directory named
uploads, you may need to use the following command from a shell
uploads, you may need to use the following command from a shell
or system prompt (while in the installation directory):
chmod o+w uploads
...
...
@@ -170,7 +170,7 @@ INSTALLATION
administer > site configuration > file system
Enter the path to the new location (e.g.: uploads) at the File
System Path prompt.
System Path prompt.
Changing the file system path after files have been uploaded may cause
unexpected problems on an existing site. If you modify the file system path
...
...
includes/common.inc
View file @
2f0657bc
...
...
@@ -1966,7 +1966,7 @@ function drupal_get_js($scope = 'header', $javascript = NULL) {
* 'class' => 'draggable',
* );
* @endcode
*
*
* Calling drupal_add_tabledrag() would then be written as such:
* @code
* drupal_add_tabledrag('my-module-table', 'order', 'sibling', 'my-elements-weight');
...
...
includes/locale.inc
View file @
2f0657bc
...
...
@@ -1016,7 +1016,7 @@ function _locale_import_read_po($op, $file, $mode = NULL, $lang = NULL, $group =
while
(
!
feof
(
$fd
))
{
$line
=
fgets
(
$fd
,
10
*
1024
);
// A line should not be this long
if
(
$lineno
==
0
)
{
// The first line might come with a UTF-8 BOM, which should be removed.
// The first line might come with a UTF-8 BOM, which should be removed.
$line
=
str_replace
(
"
\xEF\xBB\xBF
"
,
''
,
$line
);
}
$lineno
++
;
...
...
modules/filter/filter.admin.inc
View file @
2f0657bc
...
...
@@ -369,7 +369,7 @@ function theme_filter_admin_order($form) {
$output
.
=
drupal_render
(
$form
);
drupal_add_tabledrag
(
'filter-order'
,
'order'
,
'sibling'
,
'filter-order-weight'
,
NULL
,
NULL
,
FALSE
);
return
$output
;
}
...
...
modules/taxonomy/taxonomy.admin.inc
View file @
2f0657bc
...
...
@@ -278,7 +278,7 @@ function taxonomy_form_term(&$form_state, $vocabulary, $edit = array()) {
// taxonomy_get_tree and taxonomy_get_parents may contain large numbers of
// items so we check for taxonomy_override_selector before loading the
// full vocabulary. Contrib modules can then intercept before
// hook_form_alter to provide scalable alternatives.
// hook_form_alter to provide scalable alternatives.
if
(
!
variable_get
(
'taxonomy_override_selector'
,
FALSE
))
{
$parent
=
array_keys
(
taxonomy_get_parents
(
$edit
[
'tid'
]));
$children
=
taxonomy_get_tree
(
$vocabulary
->
vid
,
$edit
[
'tid'
]);
...
...
modules/taxonomy/taxonomy.module
View file @
2f0657bc
...
...
@@ -428,7 +428,7 @@ function taxonomy_get_vocabularies($type = NULL) {
/**
* Implementation of hook_form_alter().
* Generate a form for selecting terms to associate with a node.
* We check for taxonomy_override_selector before loading the full
* We check for taxonomy_override_selector before loading the full
* vocabulary, so contrib modules can intercept before hook_form_alter
* and provide scalable alternatives.
*/
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment