Merge pull request #278 from HeavyThumper/master

list.tpl - fix lowercase typo for $CONF variable reference for quota …
pull/277/head
David Goodwin 5 years ago committed by GitHub
commit 31de6c6d66
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -91,9 +91,9 @@
{elseif $field.type == 'quot'}
{assign "tmpkey" "_{$key}_percent"}
{if $item[$tmpkey] > $conf.quota_level_high_pct}
{if $item[$tmpkey] > $CONF.quota_level_high_pct}
{assign var="quota_level" value="high"}
{elseif $item[$tmpkey] > $conf.quota_level_med_pct}
{elseif $item[$tmpkey] > $CONF.quota_level_med_pct}
{assign var="quota_level" value="mid"}
{else}
{assign var="quota_level" value="low"}

Loading…
Cancel
Save