NPE in case site hasn't visible pages

Description

To reproduce bug:
1. create site with 1 page
2. then change "Hidden" flag for this page to "true"
3. refresh page

You will get NPE from botton_js.jspf

Environment

Liferay 6.1.0 bundle

Activity

Show:

Paul Piao May 22, 2012 at 6:21 PM

PASSED Manual Testing following the steps in the description.

Reproduced on:
Tomcat 7.0 + MySQL 5. Portal 6.1.10 EE GA1.

In console throw NPE error message.

Fixed on:
Tomcat 7.0 + MySQL 5. Portal 6.1.x EE GIT ID: 75eea5b6d07187864739026a062a8df59a8e293a.
Tomcat 7.0 + MySQL 5. Portal 6.1.x CE GIT ID: f7c91d539974329e93a485d71e4c1f2f9aee50af.
Tomcat 7.0 + MySQL 5. Portal 6.2.x GIT ID: 1aed0c438672d4200851ba3b802764c2efe2c0b1.

In console is not throw NPE error message.

Michael Saechang May 22, 2012 at 12:07 PM

Committed on:
Portal 6.1.x CE GIT ID: d48cd4902cccc96497141de312ee688417f2eb3e.
Portal 6.2.x GIT ID: f99a366ca17a101b4665dfca501a86cb22334470.

Igor Spasic May 21, 2012 at 7:39 AM

Thank you Alexey!

Alexey Kakunin May 8, 2012 at 6:20 AM

Problem is in html/common/themes/bottom_js.jspf in line:

for (int i = 0; i < layouts.size(); i++) {

problem is - due to implementation, in this case layouts is empty (see method ServicePreAction.getViewableLayouts for more details).

So, to avoid NPE we need just to wrap this for with

if (layouts != null) {

Fixed
Pinned fields
Click on the next to a field label to start pinning.

Details

Assignee

Reporter

Labels

Branch Version/s

6.1.x

Backported to Branch

Committed

Liferay Contributor's Agreement

Accept

Priority

Zendesk Support

Created May 8, 2012 at 6:17 AM
Updated June 24, 2023 at 3:49 PM
Resolved May 22, 2012 at 9:51 AM