Strange problem has cropped up in re-structuring my application.
The application was in one big file:
package CokeWorks;
use strict;
use warnings;
# ... setup
# db stuff
# relationship stuff
{
Package CokeWorks::Content;
# exported stuff
}
# etc.
Now it's in lots of files, so:
package CokeWorks;
# ...
CokeWorks::Content->require;
# and all that stuff in CokeWorks/Content.pm
# etc.
There are a few relationships. For example every row in Content has
a user field which contains the primary key for the user.
content/list displays a list of records including the name of the
user who added it with [% $item.user %] in the template. This was
working fine.
Now it ain't working properly - I just get the primary key value in
the newer version.
I'm just looking for some suggestions on how to troubleshoot this at
this point.
Cheers
Kieren
-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems? Stop! Download the new AJAX search engine that makes
searching your log files as easy as surfing the web. DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
_______________________________________________
Maypole-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/maypole-users