We are using this wonderful Conference Module 6.x-1.2-beta2.
Under Manage conference -> Assign reviews tab it shows only 25 items. We have over 200 items.
How do I get to list all the items under the 'Assign reviews' tabs? Clicking the 'Date' sort by kind of helps but not very helpful as we would like to view them all. Is there a place where i can modify this?
Thank you.
~UK
Comments
Comment #1
uk_1970 commentedWhat is mean is this. The pager for the 'Assign reviews' Tab doesn't seem to be working.
I opened the conference.module file and found this which explains why its showing 25 items but not sure why the pager is not working:
This code only prints or list 25 items out of 500 items without pager. I do not wish to display all 500 items in one page...but rather I would like to have a pager much like the 'Decision' Tab. BTW...the code for the 'Assign reviews' Tab looks identical to the 'Decision' Tab but for some reason the 'Assign reviews' Tab not working.
Can anyone help?
Thanks.
Comment #2
jenifertucker commentedHave you checked the view settings for this to see if the pager is set to be on?
I haven't had much luck with the postings of bugs I've found for the conference module other than an email from zyxware after waiting many weeks for a response to say they are maintaining the module but are not actively developing or working on the module but offering paid customisations of this module :-(
Comment #3
uk_1970 commentedhi JeniferTucker,
thanks for your post. Where would I find the 'view settings'? I looked everywhere, including the conference settings page but can't find it. Can you tell me where it is?
I am thinking there must be an easy way to turn the pager on. If it works for on 'tab' it should also work for the other 'tab'. right?
That's too bad that you can't get any good responses to get the bugs fixed unless you paid them. :(
So that I am also aware of, what other bugs have you found?
Thanks
~uk_1970.
Comment #4
BasMichielsen commentedHello,
I also found this problem and posted this in May this year:
There is an error in conference.module which makes that the pager does not appear on two of the conference manager pages.
In function conference_manage_assignment and in function conference_revisions
line 591 resp. line 2512 should be
$result = pager_query($sql, 25, 5, NULL, $ctype_paper);
Hopefully, that solves this problem for you,
Bas Michielsen
Comment #5
jenifertucker commentedHello Bas
You wouldn't have come across this bug in this module as well by any chance? I'm not really getting anywhere and would welcome any suggestions.
Broken/missing handler or Array
http://drupal.org/node/850256
Many thanks
Jenifer
Comment #6
uk_1970 commentedI fixed it. Pls disregard post below. On both functions I just changed it from 0 to 5.
$result = pager_query($sql, 25, 0, NULL, $ctype_paper); to
$result = pager_query($sql, 25, 5, NULL, $ctype_paper);
That works.
Thanks a lot.
hi. Thanks for the post.
The numbers 591 and 2512 on conference_manage_assignment() and in function conference_revisions() does not match with mine. Not sure why.
As shown below.... it looks like the code you've mentioned does exist on both functions. See below. What am I missing?
code for conference_revisions() function
Code for function conference_manage_assignment() function.