Rick-T137 / VIC-BBS

VIC-20 Bulletin Board System
https://www.vic-bbs.com
GNU General Public License v3.0
5 stars 0 forks source link

Field Warning not Sent #8

Closed Rick-T137 closed 3 months ago

Rick-T137 commented 3 months ago

When filling out New User Application, if you skip one of the fields, you are supposed to get a warning. It does not show, but the application restarts as expected. Likely just missing a sysa(1).

Rick-T137 commented 3 months ago

Yep! Line 1335 is missing a sysa(1) call...

1335 ifun$=""orpw$=""orrn$=""orfr$=""theno$=cr$+"Fill in all fields!"+cr$:goto1300

Should be:

1335 ifun$=""orpw$=""orrn$=""orfr$=""theno$=cr$+"Fill in all fields!"+cr$:sysa(1):goto1300

Will update now.

Rick-T137 commented 3 months ago

Had to shorten the message to "Missing Fields!" to make the line fit.

Rick-T137 commented 3 months ago

Fixed in DEV and tested. Will deploy with Message improvements. #1