Closed GoogleCodeExporter closed 9 years ago
There is another issue similar to this one.
Strict Standards: Declaration of Form::get_html() should be compatible with
that of FormGroup::get_html() in /var/www/html/calendar/includes/form.php on
line 801
Since the constructor is changed from 5.3.3, a class like following has problem.
The following codes may caused strict warning since 5.3.3.
class A {
A () {
...
}
__constructor () {
....
}
}
However, the following one are OK!
class A {
__constructor () {
....
}
A () {
...
}
}
Original comment by lacu...@gmail.com
on 7 Nov 2012 at 4:47
This issue was closed by revision r573.
Original comment by sproctor@gmail.com
on 7 Nov 2012 at 5:25
The get_html issue is fixed by r574
Original comment by sproctor@gmail.com
on 7 Nov 2012 at 3:53
Original issue reported on code.google.com by
lacu...@gmail.com
on 7 Nov 2012 at 3:33