Skip to content

Commit 81e2d02

Browse files
authored
Merge pull request #6 from javexed/main
Update drupal_fix_permissions.sh
2 parents 5d600e3 + d0fa113 commit 81e2d02

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

drupal_fix_permissions.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ is_drupal_root() {
159159
# Globals:
160160
# drupal_user: user to own the files and directories.
161161
# httpd_group: group to own the files and directories.
162-
function fix_onwership() {
162+
function fix_ownership() {
163163
case $simulate in
164164
0)
165165
# Real action.
@@ -456,9 +456,9 @@ printf "\nProcessing Drupal installed on '$complete_drupal_path'"
456456

457457
# First, fix ownership.
458458
printf "\nFixing ownership of files and directories"
459-
fix_onwership "$complete_drupal_path"
459+
fix_ownership "$complete_drupal_path"
460460
echo "$additional_files_paths"| while read path; do
461-
[ -d "$path" ] && fix_onwership "$path"
461+
[ -d "$path" ] && fix_ownership "$path"
462462
done
463463

464464
# Second, fix permissions on code.

0 commit comments

Comments
 (0)