|
@@ -430,10 +430,10 @@ if $ARGS[0] = 'add_new_home_location':
|
|
elseif $ARGS[2] = '' and $ARGS[3] = '':
|
|
elseif $ARGS[2] = '' and $ARGS[3] = '':
|
|
!! WARNING: Either $ARGS[2] or $ARGS[3] must have a value, otherwise no mapping will be created
|
|
!! WARNING: Either $ARGS[2] or $ARGS[3] must have a value, otherwise no mapping will be created
|
|
$home_name[$ARGS[1]] = ''
|
|
$home_name[$ARGS[1]] = ''
|
|
- elseif $ARGS[2] = '':
|
|
|
|
|
|
+ elseif $ARGS[2] ! '':
|
|
$home_name[$ARGS[1]] = $home_name[$ARGS[2]]
|
|
$home_name[$ARGS[1]] = $home_name[$ARGS[2]]
|
|
else
|
|
else
|
|
- $home_name[$ARGS[1]] = $ARGS[3]
|
|
|
|
|
|
+ $home_name[$ARGS[1]] = $home_name[$ARGS[3]]
|
|
end
|
|
end
|
|
end
|
|
end
|
|
--- homes_properties_attr ---------------------------------
|
|
--- homes_properties_attr ---------------------------------
|