Fixed mbfile import with too many description lines in files.bbs

This commit is contained in:
Michiel Broek 2007-05-16 19:29:30 +00:00
parent a5d2a3d579
commit 6821829f83
2 changed files with 4 additions and 2 deletions

View File

@ -11,6 +11,8 @@ v0.91.8 26-Apr-2007
mbfido: mbfido:
Added mbtask commands to update the MIB counters. Added mbtask commands to update the MIB counters.
Fixed mbfile import with too many description lines in
files.bbs
mbnewusr: mbnewusr:
Fixed loading default language for new user. Fixed loading default language for new user.

View File

@ -4,7 +4,7 @@
* Purpose: File Database Maintenance - Import files with files.bbs * Purpose: File Database Maintenance - Import files with files.bbs
* *
***************************************************************************** *****************************************************************************
* Copyright (C) 1997-2005 * Copyright (C) 1997-2007
* *
* Michiel Broek FIDO: 2:280/2802 * Michiel Broek FIDO: 2:280/2802
* Beekmansbos 10 * Beekmansbos 10
@ -367,7 +367,7 @@ void ImportFiles(int Area)
f_db.Desc[line][pos] = token[x]; f_db.Desc[line][pos] = token[x];
pos++; pos++;
} }
if (line == 25) if (line == 24)
break; break;
} }
} }