* setup.c: remove "--backtitle" from calls to "dialog" because its
authorArt Cancro <ajc@citadel.org>
Sun, 15 Jan 2006 04:40:40 +0000 (04:40 +0000)
committerArt Cancro <ajc@citadel.org>
Sun, 15 Jan 2006 04:40:40 +0000 (04:40 +0000)
  availability cannot be depended upon.

webcit/ChangeLog
webcit/setup.c

index a7e2cd773acca209ff65707a90110df838453d65..2d9be95abcfd883967e80c0b2101b6dc88373989 100644 (file)
@@ -1,5 +1,9 @@
 $Id$
 
+Sat Jan 14 23:40:28 EST 2006 ajc
+* setup.c: remove "--backtitle" from calls to "dialog" because its
+  availability cannot be depended upon.
+
 Fri Jan 13 15:25:18 EST 2006 ajc
 * THIS IS 6.70
 
index 69fad9757cedebaf02c612aa118e5a7f0ce09eb5..f17e7ac01f0993571195be9097104ae55fd566a9 100644 (file)
@@ -251,9 +251,8 @@ void set_value(char *prompt, char str[])
 
        case UI_DIALOG:
                CtdlMakeTempFileName(dialog_result, sizeof dialog_result);
-               sprintf(buf, "exec %s --backtitle '%s' --inputbox '%s' 19 72 '%s' 2>%s",
+               sprintf(buf, "exec %s --inputbox '%s' 19 72 '%s' 2>%s",
                        getenv("CTDL_DIALOG"),
-                       "WebCit setup",
                        prompt,
                        str,
                        dialog_result);
@@ -309,9 +308,8 @@ void important_message(char *title, char *msgtext)
                break;
 
        case UI_DIALOG:
-               sprintf(buf, "exec %s --backtitle '%s' --msgbox '%s' 19 72",
+               sprintf(buf, "exec %s --msgbox '%s' 19 72",
                        getenv("CTDL_DIALOG"),
-                       title,
                        msgtext);
                system(buf);
                break;