Skip to content
Snippets Groups Projects
Commit 3a474e62 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Don't display/log an error if text/menu/upload.* doesn't exist

"upload.*" is an optional menu file, so this should've always used the
P_NOERROR flag, but the bug just fixed (in commit b656e19f) masked this
issue.
parent b656e19f
Branches
Tags
No related merge requests found
...@@ -512,7 +512,7 @@ function logoff(fast) ...@@ -512,7 +512,7 @@ function logoff(fast)
function upload_file() function upload_file()
{ {
bbs.menu("upload"); bbs.menu("upload", P_NOERROR);
var i=0xffff; /* INVALID_DIR */ var i=0xffff; /* INVALID_DIR */
if(usrlibs) { if(usrlibs) {
i = file_area.lib_list[bbs.curlib].dir_list[bbs.curdir].number; i = file_area.lib_list[bbs.curlib].dir_list[bbs.curdir].number;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment