bug correction function param {}
Brought to you by:
dlc
Hello,
./bashlib line 173
value=$(/usr/bin/env | /bin/grep "^FORM_${name}"
| /bin/sed -e 's/FORM_//' | /usr/bin/cut -d= -f2-)
/bin/grep "^FORM_${name}"
should be replaced by:
/bin/grep "^FORM_${name}="
Otherwise, considering two CGI parameters
("parameter1" and "parameter2"), upon requesting a
parameter named "par" (which dosen't exists) the param
function will answer with the values of "parameter1"
AND "parameter2".
Thanks,
Petru