', $txt[495], ' | ', $txt['dvc_your'], ' | ', $txt['dvc_current'], ' |
';
// The current version of the core SMF package.
echo '
', $txt[496], ' | ', $context['forum_version'], ' | ?? |
';
// Now list all the source file versions, starting with the overall version (if all match!).
echo '
', $txt['dvc_sources'], ' | ?? | ?? |
';
// Loop through every source file displaying its version - using javascript.
foreach ($context['file_versions'] as $filename => $version)
echo '
', $filename, ' | ', $version, ' | ?? |
';
// Default template files.
echo '
';
foreach ($context['default_template_versions'] as $filename => $version)
echo '
', $filename, ' | ', $version, ' | ?? |
';
// Now the language files...
echo '
';
foreach ($context['default_language_versions'] as $language => $files)
{
foreach ($files as $filename => $version)
echo '
', $filename, '.', $language, '.php | ', $version, ' | ?? |
';
}
echo '
';
// Finally, display the version information for the currently selected theme - if it is not the default one.
if (!empty($context['template_versions']))
{
echo '
';
foreach ($context['template_versions'] as $filename => $version)
echo '
', $filename, ' | ', $version, ' | ?? |
';
echo '
';
}
echo '
|