|
@@ -723,9 +723,9 @@ function Credits($in_admin = false)
|
|
|
$credit_info = unserialize($row['credits']);
|
|
|
|
|
|
$copyright = empty($credit_info['copyright']) ? '' : $txt['credits_copyright'] . ' © ' . $smcFunc['htmlspecialchars']($credit_info['copyright']);
|
|
|
- $license = empty($credit_info['license']) ? '' : $txt['credits_license'] . ' ' . $smcFunc['htmlspecialchars']($credit_info['license']);
|
|
|
- $version = $txt['credits_version'] . $row['version'];
|
|
|
- $title = (empty($credit_info['title']) ? $row['name'] : $smcFunc['htmlspecialchars']($credit_info['title'])) . ' : ' . $version;
|
|
|
+ $license = empty($credit_info['license']) ? '' : $txt['credits_license'] . ': ' . $smcFunc['htmlspecialchars']($credit_info['license']);
|
|
|
+ $version = $txt['credits_version'] . ' ' . $row['version'];
|
|
|
+ $title = (empty($credit_info['title']) ? $row['name'] : $smcFunc['htmlspecialchars']($credit_info['title'])) . ': ' . $version;
|
|
|
|
|
|
// build this one out and stash it away
|
|
|
$mod_name = empty($credit_info['url']) ? $title : '<a href="' . $credit_info['url'] . '">' . $title . '</a>';
|