This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a commit to branch fix/file-upload-navigation in repository https://gitbox.apache.org/repos/asf/struts-site.git
commit 87e357c7c6eac37d3fe6d051d4842fb98510d41f Author: Lukasz Lenart <lukaszlen...@apache.org> AuthorDate: Thu Mar 14 13:39:09 2024 +0100 Improves navigation back & forth to File Upload page --- source/core-developers/file-upload-interceptor.md | 2 +- source/core-developers/file-upload.md | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/source/core-developers/file-upload-interceptor.md b/source/core-developers/file-upload-interceptor.md index 28427e25f..b5799c15f 100644 --- a/source/core-developers/file-upload-interceptor.md +++ b/source/core-developers/file-upload-interceptor.md @@ -8,7 +8,7 @@ parent: # File Upload Interceptor -> Since Struts 6.4.0 this interceptor is deprecated, please use Action FileUpload Interceptor instead! +> Since Struts 6.4.0 this interceptor is deprecated, please use [Action File Upload Interceptor](action-file-upload-interceptor) instead! See [this page](file-upload) for more examples and advanced configuration. diff --git a/source/core-developers/file-upload.md b/source/core-developers/file-upload.md index dee678efc..054464f29 100644 --- a/source/core-developers/file-upload.md +++ b/source/core-developers/file-upload.md @@ -1,9 +1,9 @@ --- -layout: core-developers +layout: default title: File Upload parent: - title: Core Developers Guide - url: index + title: Action File Upload Interceptor + url: action-file-upload-interceptor --- # File Upload @@ -24,7 +24,7 @@ than the temporary directory and the directories that belong to your web applica The Struts 2 framework leverages the Commons FileUpload library as a based library to support file upload in the framework. The library is included in a base Struts 2 distribution. -> NOTE: Since Struts 6.4.0 the `FileUploadInterceptor` is deprecated and you should use `ActionFileUploadInterceptor` instead! +> NOTE: Since Struts 6.4.0 the `FileUploadInterceptor` is deprecated, and you should use `ActionFileUploadInterceptor` instead! ## Basic Usage