mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Merged V2.1 to HEAD
6933: Various fixes for cross-site javascript and associated trickery to web-client UI screens Plus fixes to several dialogs broken in use-the-link dialog conversion changes. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@7362 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -203,7 +203,7 @@ public class CreateRuleWizard extends BaseActionWizard
|
||||
for (Map<String, Serializable> props : this.allConditionsProperties)
|
||||
{
|
||||
conditionsSummary.append(props.get(PROP_CONDITION_SUMMARY));
|
||||
conditionsSummary.append("<br/>");
|
||||
conditionsSummary.append("<br>");
|
||||
}
|
||||
|
||||
// create the summary using all the actions
|
||||
@@ -211,7 +211,7 @@ public class CreateRuleWizard extends BaseActionWizard
|
||||
for (Map<String, Serializable> props : this.allActionsProperties)
|
||||
{
|
||||
actionsSummary.append(props.get(PROP_ACTION_SUMMARY));
|
||||
actionsSummary.append("<br/>");
|
||||
actionsSummary.append("<br>");
|
||||
}
|
||||
|
||||
ResourceBundle bundle = Application.getBundle(FacesContext.getCurrentInstance());
|
||||
@@ -224,7 +224,8 @@ public class CreateRuleWizard extends BaseActionWizard
|
||||
new String[] {bundle.getString("rule_type"), bundle.getString("name"), bundle.getString("description"),
|
||||
bundle.getString("apply_to_sub_spaces"), bundle.getString("run_in_background"), bundle.getString("rule_disabled"),
|
||||
bundle.getString("conditions"), bundle.getString("actions")},
|
||||
new String[] {this.type, this.title, this.description, subSpacesYesNo, backgroundYesNo, ruleDisabledYesNo,
|
||||
new String[] {this.type, Utils.encode(this.title), Utils.encode(this.description),
|
||||
subSpacesYesNo, backgroundYesNo, ruleDisabledYesNo,
|
||||
conditionsSummary.toString(), actionsSummary.toString()});
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user