Open GoogleCodeExporter opened 9 years ago
[deleted comment]
problem is in
$this->_ole =& new OLERead();
sorry for obviousness, but it can be fixed with, for example, this
$t = new OLERead();
$this->_ole =& $t;
Original comment by nimdraug...@gmail.com
on 31 Mar 2011 at 11:22
Warning message E_STRICT Under PHP 5.3.x telling you that "Assigning the return
value of new by reference is deprecated" can safely replaced with the
following, where & has been removed:
$this->_ole = new OLERead();
In some cases(at least in recursive loops while creating a tree of nodes
containing child nodes) requires unset($this->_ole); before the actual object
assignment line to avoid all child nodes becoming identical.
which is not the case here as its in class contractor which will be called once.
Original comment by ishtiaq....@gmail.com
on 17 May 2011 at 10:14
Use the Comment 2 by nimdraug...@gmail.com ! it Works !
reach @ studybe.blogspot.com
Original comment by kmadhuge...@gmail.com
on 31 Jan 2012 at 10:42
Perfect! Tks
Original comment by christia...@gmail.com
on 3 Dec 2012 at 2:56
nimdraug...@gmail.com, tks for you. It's work
Original comment by caturteg...@gmail.com
on 6 Jan 2013 at 1:02
Thanks it worked!
Original comment by sampathk...@gmail.com
on 16 Jan 2013 at 2:34
@nimdraug@gmail.com
Thanks it works for me
Original comment by amahri...@gmail.com
on 13 May 2013 at 6:32
thanks it works
Original comment by nancymur...@gmail.com
on 31 Jul 2013 at 10:34
#2 nimdraug works
Original comment by igor.cam...@gmail.com
on 8 Nov 2014 at 7:46
Thanks
Original comment by cheeze...@gmail.com
on 18 Nov 2014 at 2:18
Original issue reported on code.google.com by
oliver.k...@gmail.com
on 2 Aug 2010 at 11:32