Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[TASK] Disable autocompletion in Install Tool settings
To prevent unwanted entries, the autocomplete attribute
in the Install tool is added with the `off` property.

Resolves: #88709
Releases: master, 9.5
Change-Id: I3c0a343fd76170f6cc37e5e87ad9a5d5d9a52fb9
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/61331
Tested-by: Tymoteusz Motylewski <t.motylewski@gmail.com>
Tested-by: Andreas Fernandez <a.fernandez@scripting-base.de>
Tested-by: TYPO3com <noreply@typo3.com>
Reviewed-by: Tymoteusz Motylewski <t.motylewski@gmail.com>
Reviewed-by: Andreas Fernandez <a.fernandez@scripting-base.de>
  • Loading branch information
brandung-gs authored and andreaskienast committed Jul 22, 2019
1 parent 3346400 commit ebad91f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
Expand Up @@ -22,7 +22,7 @@ <h3 class="panel-title">
</f:for>
</ul>

<form action="#" name="configurationform" class="t3js-extensionConfiguration-form extensionConfiguration-form" data-extensionKey="{extensionKey}">
<form action="#" name="configurationform" autocomplete="off" class="t3js-extensionConfiguration-form extensionConfiguration-form" data-extensionKey="{extensionKey}">
<div class="tab-content">
<f:for each="{extensionData.configuration}" as="subcategories" key="categoryName" iteration="iteration">
<f:if condition="{categoryName}">
Expand Down
Expand Up @@ -73,6 +73,7 @@ <h3 class="panel-title">
value="{item.value}"
data-path="{sectionName}/{item.key}"
class="t3-install-form-input-text form-control t3js-localConfiguration-pathValue"
autocomplete="off"
/>
</div>
</f:if>
Expand All @@ -85,6 +86,7 @@ <h3 class="panel-title">
value="{item.value}"
data-path="{sectionName}/{item.key}"
class="t3-install-form-input-text form-control t3js-localConfiguration-pathValue"
autocomplete="off"
/>
</div>
</f:if>
Expand All @@ -97,6 +99,7 @@ <h3 class="panel-title">
value="{item.value}"
data-path="{sectionName}/{item.key}"
class="t3-install-form-input-text form-control t3js-localConfiguration-pathValue"
autocomplete="off"
/>
</div>
</f:if>
Expand Down
Expand Up @@ -10,7 +10,7 @@
<div class="form-group">
<div class="input-group">
<span class="input-group-addon">Filter by:</span>
<input type="text" class="form-control t3js-localConfiguration-search" placeholder="search setting">
<input type="text" autocomplete="off" class="form-control t3js-localConfiguration-search" placeholder="search setting">
</div>
</div>

Expand Down

0 comments on commit ebad91f

Please sign in to comment.