From 5607103d81eab4d45ad26d1b5e9b1a62104df1a0 Mon Sep 17 00:00:00 2001 From: obigal Date: Fri, 5 Jul 2013 14:00:36 -0400 Subject: [PATCH] Update share.class.php --- public/include/classes/share.class.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/public/include/classes/share.class.php b/public/include/classes/share.class.php index ade40cfe..6d17a4c1 100644 --- a/public/include/classes/share.class.php +++ b/public/include/classes/share.class.php @@ -13,12 +13,19 @@ class Share { // This defines each share public $rem_host, $username, $our_result, $upstream_result, $reason, $solution, $time, $difficulty; +<<<<<<< HEAD public function __construct($debug, $mysqli, $user, $block, $config) { $this->debug = $debug; $this->mysqli = $mysqli; $this->user = $user; $this->config = $config; $this->block = $block; +======= + public function __construct($debug, $mysqli, $config, $salt) { + $this->debug = $debug; + $this->mysqli = $mysqli; + $this->config = $config; +>>>>>>> Update share.class.php $this->debug->append("Instantiated Share class", 2); }