Skip to content

Commit 2beeb2e

Browse files
committed
MAGETWO-29463: Missing installation features of the new setup wizard - Save Session Data
- CR fixes.
1 parent 4f574d6 commit 2beeb2e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup/pub/magento/setup/web-configuration.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ angular.module('web-configuration', ['ngStorage'])
134134
require: 'ngModel',
135135
link: function (scope, element, attrs, ngModel) {
136136
var validator = function(value){
137-
if (value === 'redis' ) {
137+
if (value === 'redis') {
138138
var ajaxPromise = redisFactory.hasRedisExtension();
139139
ajaxPromise.then(function(result) {
140140
ngModel.$setValidity('checkRedis', result.data.hasRedis);

setup/view/magento/setup/web-configuration.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ $hints = [
299299
ng-change="$scope.validate()"
300300
check-Redis
301301
>
302-
<?php foreach ( $this->sessionSave as $value): ?>
302+
<?php foreach ($this->sessionSave as $value):?>
303303
<?php echo "<option value=\"" . $value . "\">" . ucfirst($value) . "</option>"; ?>
304304
<?php endforeach; ?>
305305
</select>

0 commit comments

Comments
 (0)