Change sum to total

This commit is contained in:
Brian Miyaji
2014-02-15 23:48:02 +11:00
parent e800084fc4
commit 83f503cf7f
6 changed files with 95 additions and 64 deletions

View File

@@ -124,35 +124,35 @@ $sportspress_sports['rugby'] = array(
'post_title' => 'Points',
'post_name' => 'points',
'meta' => array(
'sp_calculate' => 'sum',
'sp_calculate' => 'total',
),
),
array(
'post_title' => 'Tries',
'post_name' => 'tries',
'meta' => array(
'sp_calculate' => 'sum',
'sp_calculate' => 'total',
),
),
array(
'post_title' => 'Conversions',
'post_name' => 'conversions',
'meta' => array(
'sp_calculate' => 'sum',
'sp_calculate' => 'total',
),
),
array(
'post_title' => 'Penalty Goals',
'post_name' => 'penaltygoals',
'meta' => array(
'sp_calculate' => 'sum',
'sp_calculate' => 'total',
),
),
array(
'post_title' => 'Drop Goals',
'post_name' => 'dropgoals',
'meta' => array(
'sp_calculate' => 'sum',
'sp_calculate' => 'total',
),
),
),