Fix for reseller support ticket message

  • After Login as reseller you see the message for existing tickets, but the counter is "0".


    Open the file

    Code
    1. /var/www/imscp/gui/public/reseller/index.php


    Search in line 68

    Code
    1. set_page_message(tr('You have received %d new support questions.', '<strong>' . $nbQuestions . '</strong>'));


    and replace it with

    Code
    1. set_page_message(tr('You have received %s new support questions.', '<strong>' . $nbQuestions . '</strong>'));

    Edited once, last by xorg ().