x00
MVPx00 MVP
Reactions
-
Re: www and sign in
this is a cookie issue. $Configuration['Garden']['Cookie']['Domain'] = '.teenspirt.lk'; (View Post)2 -
Re: How to add class attribute to link in theme hooks ?
you can actually do this now echo 'hello' , $world; it is not concating the string but echoing both things one after another. (View Post)1 -
Re: How to add class attribute to link in theme hooks ?
btw the speed difference between the two is generally negligible. But if you are doing a lot of operations single quote is obviously goign to be bit faster. Though in recent version, you really have … (View Post)1 -
Re: How to add class attribute to link in theme hooks ?
not really true. http://www.php.net/manual/en/language.types.string.php $ php -aphp> print 'hello \n world';hello \n wordphp> print "hello \n world";hello worldphp> $NoCa… (View Post)2 -
Re: Is this the correct way to create an application?
Yes you are absolutely right, though dashborad modules like UserInfoModule, SignedInModule, and GuestModule do not have to be copied. They can be called in vanilla app, but only reside in dashboard. (View Post)2
