I'm a long time UltraEdit user and I just installed v15. Here's the problem I can't figure out.
I have a functions.inc file that contains many of my custom PHP functions which I use in other files. I've always typed my functions like this:
- Code: Select all
function example($param)
{
// do magic here..
}
But now in UltraEdit v15, the example() function shows up twice in the Functions List:
- example
example($param)
- Code: Select all
function example($param) {
// do magic here..
}
Then it only shows up once in the Function List (but without the parameters list!!):
- example
This was never a problem in earlier versions of UltraEdit and I really cannot change my coding style. I looked into the syntax highlighting file (php.uew), but couldn't figure out the problem.
Any one have any ideas? Any help would be appreciated!
Thanks.
Sean



