From: Andreas A. <a.a...@th...> - 2001-08-26 12:35:40
|
Hi Andris, Hmm. But the output looks more clear to me. I think it's worth changing Page. Hopefully see you soon. Good luck with your move. Andi > xml2php now uses the idea from Alex to know when to > generate keyless arrays(the version before generated > keyless arrays if there were two array keys with the > same name, but it didn't work if there was only one array > defined). > _Because of this change it is necesary to change the bcp.xml page > definitions and the way Page processes them._ > So, > <langs> > <lang> > <name>Latvian</name> > </lang> > <lang> > <name>English</name> > </lang> > </langs> > > will become > > $langs=array( > array( > 'name' => "Latvian", > ), > array( > 'name' => "English", > ), > ); > > Over and out, > Andris Spruds |