On the bottom of the page there should be a debug section "untranslated strings" and in this section there should be only the item "None".
The debug section "untranslated strings" is showing:
S_MESSAGES_LOGGED="messages logged**"
Source code from stage cloned. Currently, this 3.6.0-alpha2-dev.
PHP 7.0.6
The problem lies in the nested language string call in JROOT\plugins\system\debug\debug.php
In line 1785, there is something like:
... JText::sprintf(JText::_('PLG_DEBUG_LOGS_LOGGED'), $logEntriesTotal) ...
This is wrong. It must be either:
... JText::sprintf('PLG_DEBUG_LOGS_LOGGED', $logEntriesTotal) ...
or:
... sprintf(JText::_('PLG_DEBUG_LOGS_LOGGED'), $logEntriesTotal) ...
I don't know which solution is the recommended.
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2016-05-26 06:35:29 |
Closed_By | ⇒ | infograf768 |
Closed as we have a patch to test #10627
Thanks!
Set to "closed" on behalf of @infograf768 by The JTracker Application at issues.joomla.org/joomla-cms/10626
I confirm. It should be:
JText::sprintf('PLG_DEBUG_LOGS_LOGGED', $logEntriesTotal)
Will make patch
This comment was created with the J!Tracker Application at issues.joomla.org/joomla-cms/10626.