From: Greg Sabino Mullane Date: Thu, 27 Sep 2007 13:23:10 +0000 (+0000) Subject: Use "private", thanks Nick. X-Git-Tag: 1.31.0-rc.0~51270 X-Git-Url: http://git.cyclocoop.org/%22.%24h.%22?a=commitdiff_plain;h=546dc8671415dc1c175bbc4217b3de1890ce2b23;p=lhc%2Fweb%2Fwiklou.git Use "private", thanks Nick. --- diff --git a/includes/Database.php b/includes/Database.php index 0c92d6795f..1ac03ce885 100644 --- a/includes/Database.php +++ b/includes/Database.php @@ -42,7 +42,7 @@ class DBObject { * This allows us to distinguish a blob from a normal string and an array of strings */ class Blob { - var $data; + private $data; function __construct($data) { $this->mData = $data; }