Hi.
here there are some tiny bugs
1)
It seems that last release of PhpEd (build 4513) doesn't support array type hinting, introduced in PHP since 5.1.
PhpEd underline as an error the type "array" in the following code:
<?php
class MyClass {
public function MyMethod(array $MyArray){
return;
}
}
?>
|
2)
Autocorrection doesn't work properly with certain word:
if I set ask to correct "teh" to "the" all works, but if I ask to correct "<br>" to "<br />" nothing happen.
A work around should be asking to correct "br" to "br /"
3)
In my opinion you should let inline preformatted HTML end with />, for eg.:
Now is:
<input type="text" name="mytext"> |
but it should be:
<input type="text" name="mytext" /> |
Thank you
Nico