From 4b5a2885b84049e4637ca356c91a1bead528a86a Mon Sep 17 00:00:00 2001 From: Neozonz Date: Tue, 21 Jan 2014 20:45:34 -0500 Subject: [PATCH] [FIX] Missing Bracket --- cronjobs/pps_payout.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cronjobs/pps_payout.php b/cronjobs/pps_payout.php index 7f2f1279..345a7f02 100755 --- a/cronjobs/pps_payout.php +++ b/cronjobs/pps_payout.php @@ -73,7 +73,7 @@ $log->logInfo("PPS value: " . $pps_value); // Find our last share accounted and last inserted share for PPS calculations $log->logInfo("PPS Previous Share ID: " . $iLastShareId); -if (!$iPreviousShareId = $setting->getValue('pps_last_share_id') { +if (!$iPreviousShareId = $setting->getValue('pps_last_share_id')) { $log->logError("Failed to fetch Previous Share ID. ERROR: " . $setting->getCronError()); }