Closed GoogleCodeExporter closed 8 years ago
Actual implementation preserves reversable methods changes inside called object. {{{ $test = phpQuery('a'); $test2 = clone $test; $test->eq(0); // this IS true print $test != $test2; }}} Proper implementation shouldn't. {{{ $test = phpQuery('a'); $test2 = clone $test; $test->eq(0); // this IS true print $test == $test2; }}}
Original issue reported on code.google.com by tobiasz....@gmail.com on 24 Jan 2008 at 4:16
tobiasz....@gmail.com
Fixed in new branch 0.8-jquery-1.2
Original comment by tobiasz....@gmail.com on 26 Jan 2008 at 1:17
Original issue reported on code.google.com by
tobiasz....@gmail.com
on 24 Jan 2008 at 4:16