Hi Craig,

Florian has tracked down the cause of your problem (which he
encountered himself).

The problem is that the maypole macro template is using a deprecated
Class::DBI method, and should try and use the new method instead.

You need to change the line :
   accessor = item.accessor_name(col)
in the display_line block of macros template to :
  accessor = item.accessor_name(col)  || item.accessor_name_for(col);

regards,

Aaron

-- 
http://www.aarontrevena.co.uk
LAMP System Integration, Development and Hosting

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Maypole-users mailing list
Maypole-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/maypole-users

Reply via email to