-
Type:
Regression Bug
-
Status: Closed
-
Resolution: Fixed
-
Affects Version/s: 7.1.X, 7.2.X, Master
-
Fix Version/s: 7.1.X, 7.2.10 DXP FP5, 7.2.10.2 DXP SP2, 7.2.X, 7.3.1 CE GA2, 7.3.2 CE GA3, 7.3.10 DXP GA1, Master
-
Component/s: Content Display Widgets > Asset Publisher widget
-
Branch Version/s:7.2.x, 7.1.x
-
Backported to Branch:Committed
-
Fix Priority:3
-
Git Pull Request:
Steps to Reproduce:
- Setup outgoing emails in Liferay (see
LPS-104305to configure them) - Change your Liferay user's email address so that it isn't blacklisted.
- Add an Asset Publisher to a page.
- Enable the subscription in the the Asset Publisher configuration (from Display Settings > Set and Enable).
- Enable Email Subscriptions from the Subcriptions configuration tab.
- Create a web content from the asset publisher.
- Force the check using the below attached Groovy script.
Expected Results:
The asset entry title should appear in the email body without XML.
Actual Results:
The title isn't translated appearing in XML.
The Groovy script:
import com.liferay.registry.RegistryUtil def registry = RegistryUtil.getRegistry() def assetEntriesCheckerUtil = registry.getServices("com.liferay.asset.publisher.web.internal.messaging.AssetEntriesCheckerUtil", null)[0] def checkEntriesMethod = assetEntriesCheckerUtil.getClass().getMethod("checkAssetEntries") try { checkEntriesMethod.invoke(assetEntriesCheckerUtil) } catch (Exception e) { e.printStackTrace(out) }
- is caused by
-
LPS-88432 AP shows no content after deleting category if configure AP with Contains Any Categories filter
- Closed
- relates
-
LPS-126054 [$ASSET_ENTRIES$] associated with assets are duplicated in Asset Publisher's Email Subscription mail content
- Resolved