Wrong code displayed
danielb - October 28, 2009 - 04:41
| Project: | Code Filter |
| Version: | 6.x-1.0 |
| Component: | Code |
| Category: | support request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed |
Jump to:
Description
I type this:
use com\database\DatabaseHandler
it shows this:
use comdatabaseDatabaseHandler
wtf

#1
apparently single quoting the namespace fixes it
use 'com\database\DatabaseHandler';
is fine.
however you can't double quote namespaces because the backslashes can cause interpretation errors.
#2
#3
Automatically closed -- issue fixed for 2 weeks with no activity.