This website can use cookies to improve the user experience

This website can use cookies to improve the user experience and to provide certain services and functions to users. Cookies contain small amounts of information (such as login information and user preferences) and will be stored on your device.

Enable All Cookies Privacy Policy

Problem with "Manage Comments"


avatar
Sobiech 77
From: -
Hello,

When I go to MISC - > Manage Comments, I can't change the number of "Entries per page" and I can't go to the second page of comments (file module)...

After selecting these items shows a white page.

CT. 2.1.18.

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.

Responses to this topic


1 Re: Problem with "Manage Comments"
avatar
OP 77
From: -
Thanks.
1 Re: Problem with "Manage Comments"
avatar
Administrator
1340
From: Vienna, Austria
Sorry Flushed Face. To fix this replace line 231:
    echo "<input type=\"hidden\" name=\"action\" value=\"managefilecomments\" /><input type=\"submit\" class=\"button\" value=\"" . $words_files[ 'GO' ] . "\" /><br />";

with:
    echo "<input type=\"hidden\" name=\"action\" value=\"managefilescomments\" /><input type=\"submit\" class=\"button\" value=\"" . $words_files[ 'GO' ] . "\" /><br />";
1 Re: Problem with "Manage Comments"
avatar
OP 77
From: -
Thanks, now I can change the pages, but I still have problem when I change number of entries per page (in manage comments) and when I search some items (in manage files comments).
1 Re: Problem with "Manage Comments"
avatar
Administrator
1340
From: Vienna, Austria
Open /cadmin/files/adminmanagefilescomments.php in an editor and replace both line 308 & 327:
        $html -> printpages( $all_pages_rounded, "index.php?action=managefilecomments&amp;input_search_subject=" . htmlspecialchars( $input_search_subject, ENT_QUOTES, CT_ENCODING ) . "&amp;input_search_text=" . htmlspecialchars( $input_search_text, ENT_QUOTES, CT_ENCODING ) . "&amp;input_search_author=" . htmlspecialchars( $input_search_author, ENT_QUOTES, CT_ENCODING ) . "&amp;input_search_date=" . $input_search_date . "&amp;input_search_sort=" . $input_search_sort . "&amp;input_search_order=" . $input_search_order . "&amp;input_search_pageentries=" . $input_search_pageentries . "&amp;input_search_page", $input_search_page );

with:
        $html -> printpages( $all_pages_rounded, "index.php?action=managefilescomments&amp;input_search_subject=" . htmlspecialchars( $input_search_subject, ENT_QUOTES, CT_ENCODING ) . "&amp;input_search_text=" . htmlspecialchars( $input_search_text, ENT_QUOTES, CT_ENCODING ) . "&amp;input_search_author=" . htmlspecialchars( $input_search_author, ENT_QUOTES, CT_ENCODING ) . "&amp;input_search_date=" . $input_search_date . "&amp;input_search_sort=" . $input_search_sort . "&amp;input_search_order=" . $input_search_order . "&amp;input_search_pageentries=" . $input_search_pageentries . "&amp;input_search_page", $input_search_page );

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.