Skip to content

Commit

Permalink
Fixing site search regression (really this time).
Browse files Browse the repository at this point in the history
  • Loading branch information
diosmosis committed Dec 10, 2013
1 parent 3f8024c commit 2d70b0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/CoreHome/templates/_dataTableCell.twig
Expand Up @@ -25,7 +25,7 @@
{% if column in totals|keys -%}
{% set labelColumn = columns_to_display|first %}
{% set reportTotal = totals[column] %}
{% if siteSummary is defined and siteSummary.getRowsCount() > 0 and siteSummary.getFirstRow %}
{% if siteSummary is defined and siteSummary is not empty and siteSummary.getFirstRow %}
{% set siteTotal = siteSummary.getFirstRow.getColumn(column) %}
{% else %}
{% set siteTotal = 0 %}
Expand Down

0 comments on commit 2d70b0d

Please sign in to comment.