diff --git a/src/sbbs3/js_filebase.c b/src/sbbs3/js_filebase.c
index b4c61f2192657bef4222da11195205a68e1cc2e4..cf6a4dae9cb4db4a5d545854fb0fb8c30301dd11 100644
--- a/src/sbbs3/js_filebase.c
+++ b/src/sbbs3/js_filebase.c
@@ -1851,7 +1851,7 @@ static const char* filebase_detail_prop_desc[] = {
 };
 
 static const char* filebase_sort_prop_desc[] = {
-	"Natural sort order (same as DATE_A)",
+	"Natural/index order (no sorting)",
 	"Filename ascending, case insensitive sort order",
 	"Filename descending, case insensitive sort order",
 	"Filename ascending, case sensitive sort order",
diff --git a/src/sbbs3/sbbsdefs.h b/src/sbbs3/sbbsdefs.h
index 0a9d03fbbb2b62f47298e274ffb913f23be545f0..3f156263c2f62077e98684c0b1c9f7460814baf3 100644
--- a/src/sbbs3/sbbsdefs.h
+++ b/src/sbbs3/sbbsdefs.h
@@ -307,7 +307,7 @@ enum file_sort {                    /* Values for dir[x].sort */
     ,FILE_SORT_DATE_D   = 3         /* Sort by upload date, descending */
 	,FILE_SORT_SIZE_A	= 6			/* Sort by file size, ascending */
 	,FILE_SORT_SIZE_D	= 7			/* Sort by file size, descending */
-	,FILE_SORT_NATURAL  = FILE_SORT_DATE_A
+	,FILE_SORT_NATURAL  = 8			/* No sorting */
 };
 
 /* Values for grp[x].sort */
diff --git a/src/sbbs3/scfg/scfgxfr2.c b/src/sbbs3/scfg/scfgxfr2.c
index f8d6804f6b78d516969fce876a28ef2e3f1aff38..dbf680781da1760c39e3a38b44e9f5d01d64e71c 100644
--- a/src/sbbs3/scfg/scfgxfr2.c
+++ b/src/sbbs3/scfg/scfgxfr2.c
@@ -35,6 +35,7 @@ char* file_sort_desc[] = {
 	"Name Descending (case-sensitive)",
 	"Size Ascending",
 	"Size Descending",
+	"None (unsorted natural index order)",
 	NULL
 };
 
@@ -127,7 +128,8 @@ static char* sort_help =
 	"\n"
 	"The dates available for sorting are the file import/upload date/time.\n"
 	"\n"
-	"The natural (and thus fastest) sort order is `Date Ascending`."
+	"The natural (and thus fastest) sort order is `None`, which is normally\n"
+	"the order in which the files were added/imported into the filebase."
 	;
 
 static bool new_dir(unsigned new_dirnum, unsigned libnum)
@@ -2076,7 +2078,7 @@ void dir_cfg(int libnum)
 						"\n"
 						"This is the advanced options menu for the selected file directory.\n"
 					;
-						n=uifc.list(WIN_ACT|WIN_SAV|WIN_RHT|WIN_BOT,3,4,65,&adv_dflt,0
+						n=uifc.list(WIN_ACT|WIN_SAV|WIN_RHT|WIN_BOT,3,4,66,&adv_dflt,0
 							,"Advanced Options",opt);
 						if(n==-1)
 							break;