From 546dc8671415dc1c175bbc4217b3de1890ce2b23 Mon Sep 17 00:00:00 2001 From: Greg Sabino Mullane Date: Thu, 27 Sep 2007 13:23:10 +0000 Subject: [PATCH] Use "private", thanks Nick. --- includes/Database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.20.1