View Single Post
  #7  
Old 01-08-2011, 08:34 PM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
Quote:
Originally Posted by DustyPorViva View Post
You don't have to tokenize the serveroptions staff list, it should be read as an array
It doesn't . One of Graal's stupid quirks.

PHP Code:
function onCreated() {
  echo(
"without: " serveroptions.staff[0]);
  echo(
"with: " serveroptions.staff.tokenize(",")[0]);

produces

Quote:
without: Clockwork,[FOUNDER],HoudiniMan,[DIRECTORS],Tigairius,Chompy,... (trimmed the rest off)
with: Clockwork
__________________
Reply With Quote