Uploaded image for project: 'phpBB3'
  1. phpBB3
  2. PHPBB3-7042

PHP Notice: in file /includes/functions_content.php on line 825: Undefined index: KB

    XMLWordPrintable

Details

    Description

      It's displayed when viewing a PM with an attachment, probably it's displayed also in topics.

      Solution:
      Open includes/functions_content.php

      Find:

      		$size_lang = ($filesize >= 1048576) ? $user->lang['MB'] : ( ($filesize >= 1024) ? $user->lang['KB'] : $user->lang['BYTES'] );

      Replace with:

      		$size_lang = ($filesize >= 1048576) ? $user->lang['MiB'] : ( ($filesize >= 1024) ? $user->lang['KiB'] : $user->lang['BYTES'] );

      Attachments

        Activity

          People

            Acyd Burn Meik Sievertsen [X] (Inactive)
            LEW21 LEW21 [X] (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: