8 lines
135 B
PHP
8 lines
135 B
PHP
<?php
|
|
if($points_earn>0){
|
|
echo $points_earn." ".$config_points->get('points_shortcut', null, true);
|
|
}else{
|
|
echo "-";
|
|
}
|
|
?>
|