Project:Paging
Version:6.x-1.0-beta3
Component:Code
Category:bug report
Priority:normal
Assigned:Unassigned
Status:reviewed & tested by the community

Issue Summary

I get the following error when going to the compose tips page (ie www.website.com/filter/tips) I know most people don't use this page, but it's still a bug and I wanted to report it.

warning: Missing argument 2 for paging_help(), called in /mnt/stor2-wc1-dfw1/394720/www.ivawsandbox.com/web/content/sites/all/modules/paging/paging.module on line 728 and defined in /mnt/stor2-wc1-dfw1/394720/www.ivawsandbox.com/web/content/sites/all/modules/paging/paging.module on line 10.

Comments

#1

I dug around in paging.module and found this on line 10

function paging_help($path, $arg) {

I changed it to

function paging_help($path) {

Problem fixed! I think ?

#2

Yeah it's work for me..thanks

#3

I just used default arguments
function paging_help($path, $arg='none') {

#4

Status:active» reviewed & tested by the community

I can confirm #3 works. Here is a patch.

AttachmentSize
paging-562142.patch 489 bytes

#5

Patch in #4 works. I've applied it successfully.

Thanks.

nobody click here