Change Insert returns in misc. good places
Brought to you by:
anthonysteele
Exclude inserting returns after const in such cases as:
const NOTIFY_NEWMAIL = ULONG($00000001);
const NOTIFY_READYTOSEND = ULONG($00000002);
const NOTIFY_SENTDEFERRED = ULONG($00000004);
because now it does like this:
const
NOTIFY_NEWMAIL = ULONG($00000001);
const
NOTIFY_READYTOSEND = ULONG($00000002);
const
NOTIFY_SENTDEFERRED = ULONG($00000004);
Or tell us what good places are :)
Logged In: YES
user_id=66544
good style for that is
const
NOTIFY_NEWMAIL = ULONG($00000001);
NOTIFY_READYTOSEND = ULONG($00000002);
NOTIFY_SENTDEFERRED = ULONG($00000004);