Skip to content
This repository was archived by the owner on Nov 25, 2020. It is now read-only.

Commit 228560a

Browse files
committed
Fix 6.5.1 => 6.5.2 update: do not perform checks as the code is different.
1 parent 9739ab3 commit 228560a

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

core/src/plugins/gui.ajax/res/js/ui/reactjs/jsx/ReactFormComponents.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,10 @@
8181
triggerPropsOnChange:function(newValue, oldValue){
8282
if(this.props.attributes['type'] === 'password'){
8383
this.toggleEditMode();
84+
this.props.onChange(newValue, oldValue, {type:this.props.attributes['type']});
85+
}else{
86+
this.props.onChange(newValue, oldValue);
8487
}
85-
this.props.onChange(newValue, oldValue, {type:this.props.attributes['type']});
8688
},
8789

8890
componentWillReceiveProps:function(newProps){

dist/php/6.5.2-extractArchive-post.php

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,11 @@ function checkThemeUsed($themeName){
9393
}
9494

9595
checkPhpVersion('5.5.9');
96-
checkPluginUsed("conf", "serial");
97-
checkPluginUsed("auth", "serial");
98-
checkPluginUsed("auth", "cmsms");
99-
checkPluginUsed("access", "remote_fs");
100-
checkThemeUsed("vision");
101-
checkThemeUsed("umbra");
96+
if(AJXP_VERSION === '6.4.2'){
97+
checkPluginUsed("conf", "serial");
98+
checkPluginUsed("auth", "serial");
99+
checkPluginUsed("auth", "cmsms");
100+
checkPluginUsed("access", "remote_fs");
101+
checkThemeUsed("vision");
102+
checkThemeUsed("umbra");
103+
}

0 commit comments

Comments
 (0)