From 8037c6fe2b7b94c53363073473f07cda5e8fdb59 Mon Sep 17 00:00:00 2001
From: deuce <>
Date: Sun, 29 Jul 2007 03:02:58 +0000
Subject: [PATCH] Hard-code the default text.dat value in here since the odds
 are VERY good that if you're running this, your text array has already been
 modified.

---
 exec/html_noyes.js | 2 +-
 exec/html_yesno.js | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/exec/html_noyes.js b/exec/html_noyes.js
index d2b3030972..d6623ed4a4 100644
--- a/exec/html_noyes.js
+++ b/exec/html_noyes.js
@@ -23,4 +23,4 @@ if(user.settings & USER_HTML) {
 	bbs.sys_status=os;
 }
 else
-	console.print(bbs.text[NoYesQuestion]);
+	console.print("@EXEC:noyesbar@");
diff --git a/exec/html_yesno.js b/exec/html_yesno.js
index fc7ef1d75d..5fb37496a5 100644
--- a/exec/html_yesno.js
+++ b/exec/html_yesno.js
@@ -23,4 +23,4 @@ if(user.settings & USER_HTML) {
 	bbs.sys_status=os;
 }
 else
-	console.print(bbs.text[YesNoQuestion]);
+	console.print("@EXEC:yesnobar@");
-- 
GitLab