Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed #4401 - On 7.8.7 LTS Workflow actions are not displayed on Edit View #4405

Merged
merged 1 commit into from Oct 16, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions modules/AOW_Actions/actionLines.js
Expand Up @@ -33,8 +33,8 @@
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
* these Appropriate Legal Notices must retain the display of the "Powered by
* SugarCRM" logo and "Supercharged by SuiteCRM" logo. If the display of the logos is not
* reasonably feasible for technical reasons, the Appropriate Legal Notices must
* display the words "Powered by SugarCRM" and "Supercharged by SuiteCRM".
* reasonably feasible for technical reasons, the Appropriate Legal Notices must
* display the words "Powered by SugarCRM" and "Supercharged by SuiteCRM".
*/


Expand Down Expand Up @@ -152,7 +152,7 @@ function getView(ln, id){
success: function(result) {
document.getElementById('action_parameter' + ln).innerHTML = result.responseText;
if(document.getElementById('aow_script'+ln) != null){
SUGAR.util.evalScript(document.getElementById('aow_script'+ln).innerHTML);
SUGAR.util.evalScript(result.responseText);
}
}
};
Expand Down