From: Raphaël Barrois Date: Fri, 12 Feb 2010 23:11:52 +0000 (+0100) Subject: Make PlSet data protected X-Git-Tag: core/1.1.0~85 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=54d6549cad8056b1f0656b2d8fc83a853631758e;p=platal.git Make PlSet data protected Signed-off-by: Raphaël Barrois --- diff --git a/classes/plset.php b/classes/plset.php index 13628c1..baac072 100644 --- a/classes/plset.php +++ b/classes/plset.php @@ -26,9 +26,9 @@ abstract class PlSet { const DEFAULT_MAX_RES = 20; - private $conds = null; - private $orders = array(); - private $limit = null; + protected $conds = null; + protected $orders = array(); + protected $limit = null; protected $count = null;