} // END - if
// Filter to change column name for the right "points account"
-function FILTER_COUPON_CHANGE_POINTS_COLUMN_NAME ($data) {
- //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Called!');
+function FILTER_COUPON_CHANGE_POINTS_COLUMN_NAME ($filterData) {
// Get the column name from extension's name and 'locked'
- $data['column'] = getPointsColumnNameFromExtensionNameLocked('coupon', $data['locked']);
+ //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Called!');
+ $filterData['column'] = getPointsColumnNameFromExtensionNameLocked('coupon', $filterData['locked']);
// Return data
//* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Done!');
- return $data;
+ return $filterData;
}
// [EOF]