list.tpl - fix lowercase typo for $CONF variable reference for quota handling

pull/278/head
HeavyThumper 5 years ago committed by GitHub
parent 71402e9051
commit 16bf5cab7f
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