This commit is contained in:
@@ -5523,7 +5523,7 @@ namespace AyaNova.PlugIn.V8
|
|||||||
|
|
||||||
if (af.FileSize > SmallestFileUploadRejectedAsTooBig)
|
if (af.FileSize > SmallestFileUploadRejectedAsTooBig)
|
||||||
{
|
{
|
||||||
progress.Append("WIKI Attachment file " + i.LT_O_AyaFile.Display + " too large (" + af.FileSize.ToString() + "). " + MaxFileSizeInfo(af.FileSize));
|
progress.Append("WIKI Attachment file " + i.LT_O_AyaFile.Display + " too large (" + AyaBizUtils.FileSizeDisplay(af.FileSize) + "). " + MaxFileSizeInfo(af.FileSize));
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -5595,7 +5595,7 @@ namespace AyaNova.PlugIn.V8
|
|||||||
{
|
{
|
||||||
if (SmallestFileUploadRejectedAsTooBig > af.FileSize)
|
if (SmallestFileUploadRejectedAsTooBig > af.FileSize)
|
||||||
SmallestFileUploadRejectedAsTooBig = af.FileSize;
|
SmallestFileUploadRejectedAsTooBig = af.FileSize;
|
||||||
progress.Append("WIKI Attachment file " + i.LT_O_AyaFile.Display + " too large (" + af.FileSize.ToString() + "). " + MaxFileSizeInfo(af.FileSize));
|
progress.Append("WIKI Attachment file " + i.LT_O_AyaFile.Display + " too large (" + AyaBizUtils.FileSizeDisplay(af.FileSize) + "). " + MaxFileSizeInfo(af.FileSize));
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -5665,8 +5665,8 @@ namespace AyaNova.PlugIn.V8
|
|||||||
|
|
||||||
if (fi.Length > SmallestFileUploadRejectedAsTooBig)
|
if (fi.Length > SmallestFileUploadRejectedAsTooBig)
|
||||||
{
|
{
|
||||||
progress.Append("Assigned doc. file " + doc.Description + " " + doc.URL + " too large (" + fi.Length.ToString() + "). " + MaxFileSizeInfo(fi.Length));
|
progress.Append("Assigned doc. file " + doc.Description + " " + doc.URL + " too large (" + AyaBizUtils.FileSizeDisplay(fi.Length) + "). " + MaxFileSizeInfo(fi.Length));
|
||||||
NonFileUrls += (ImportTag + " - Assigned doc. file " + doc.Description + " " + doc.URL + " too large (" + fi.Length.ToString() + ")." + MaxFileSizeInfo(fi.Length) + "\n");
|
NonFileUrls += (ImportTag + " - Assigned doc. file " + doc.Description + " " + doc.URL + " too large (" + AyaBizUtils.FileSizeDisplay(fi.Length) + ")." + MaxFileSizeInfo(fi.Length) + "\n");
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
//Compile the FileData property
|
//Compile the FileData property
|
||||||
@@ -5731,8 +5731,8 @@ namespace AyaNova.PlugIn.V8
|
|||||||
{
|
{
|
||||||
if (SmallestFileUploadRejectedAsTooBig > fi.Length)
|
if (SmallestFileUploadRejectedAsTooBig > fi.Length)
|
||||||
SmallestFileUploadRejectedAsTooBig = fi.Length;
|
SmallestFileUploadRejectedAsTooBig = fi.Length;
|
||||||
progress.Append("Assigned doc. file " + doc.Description + " " + doc.URL + " too large (" + fi.Length.ToString() + "). " + MaxFileSizeInfo(fi.Length));
|
progress.Append("Assigned doc. file " + doc.Description + " " + doc.URL + " too large (" + AyaBizUtils.FileSizeDisplay(fi.Length) + "). " + MaxFileSizeInfo(fi.Length));
|
||||||
NonFileUrls += (ImportTag + " - Assigned doc. file " + doc.Description + " " + doc.URL + " too large (" + fi.Length.ToString() + ")." + MaxFileSizeInfo(fi.Length) + "\n");
|
NonFileUrls += (ImportTag + " - Assigned doc. file " + doc.Description + " " + doc.URL + " too large (" + AyaBizUtils.FileSizeDisplay(fi.Length) + ")." + MaxFileSizeInfo(fi.Length) + "\n");
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user