From d9cfc87a7a4316f7add1120bf6f7b6bdf832a709 Mon Sep 17 00:00:00 2001 From: sk-5 Date: Sun, 21 Jul 2013 01:50:37 -0700 Subject: [PATCH] Added Else clause to editing bbslist so it doesn't just fail. --- SOURCE/BBSLIST.PAS | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/SOURCE/BBSLIST.PAS b/SOURCE/BBSLIST.PAS index 9417527..60f3230 100644 --- a/SOURCE/BBSLIST.PAS +++ b/SOURCE/BBSLIST.PAS @@ -660,7 +660,13 @@ BEGIN Print(' You may only edit BBS Listing''s that you have entered.'); SysOpLog('Tried to edit a BBS Listing.'); END; - END; + END + ELSE + BEGIN + NL; + Print('There was an error displaying an ASCII file. Let the sysop know so they can investigate.'); + SysOpLog('Some ASCII Files are missing for editing the bbslist. Investigate ...') + END; END; PROCEDURE BBSList_View;