Hi folks,
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:
But now in UltraEdit v15, the example() function shows up twice in the Functions List:
Then it only shows up once in the Function List (but without the parameters list!!):
Any one have any ideas? Any help would be appreciated!
Thanks.
Sean
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..
}
- example
example($param)
Code: Select all
function example($param) {
// do magic here..
}
- example
Any one have any ideas? Any help would be appreciated!
Thanks.
Sean