You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixed the following bugs:
1.) If the install script encountered certain errors, only the message
"Installation Failed!" was displayed.
2.) Some entries in the debug array were being overwritten by later
entries that had the same generated index.
3.) In the function parse_condition_tag(), mixed content AIML wasn't
being parsed.
$msg = "There was a problem adding file $fileName to the database. Please refer to the message below to correct the problem and try again.";
237
+
$msg = "There was a problem adding file $fileName to the database. Please refer to the message below to correct the problem and try again.<br>\n" . $e->getMessage();
215
238
$msg = libxml_display_errors($msg);
216
239
}
217
240
return$msg;
@@ -362,6 +385,9 @@ function processZip($fileName)
362
385
if(!$fp)
363
386
{
364
387
$out .= "Processing for $curName failed.<br />\n";
0 commit comments