fixed typos

This commit is contained in:
Len Kranendonk 2003-11-19 19:22:13 +00:00
parent 0a715ff616
commit af8adc55e7
2 changed files with 3 additions and 2 deletions

View file

@ -11,6 +11,7 @@
- Fixed a bug in the forum where new replies defaulted to always subscribing
the user to the thread.
- Bugfix [ 822324 ]: From field not working in DataForm when mailing to group
- Fixed typos in importCollateral.pl
5.5.1

View file

@ -42,7 +42,7 @@ GetOptions(
'configFile=s'=>\$configFile,
'folderId=i'=>\$folderId,
'help'=>\$help,
'override'=>$override,
'override'=>\$override,
'pathToFiles=s'=>\$pathToFiles,
'quiet'=>\$quiet,
'thumbnailSize=i'=>\$thumbnailSize,
@ -152,7 +152,7 @@ sub addFiles {
#-----------------------------------------
sub setPrivileges {
print "Setting filesystem privileges.\n" unless ($quiet);
if ($session{os}{type} = "Linuxish") {
if ($session{os}{type} eq "Linuxish") {
unless (system("chown -R ".$webUser." ".$session{config}{uploadsPath})) {
print "Privileges set.\n" unless ($quiet);
} else {