|
@@ -685,7 +685,9 @@ function Credits($in_admin = false)
|
|
|
|
|
|
$context['copyrights'] = array(
|
|
$context['copyrights'] = array(
|
|
'smf' => sprintf($forum_copyright, $forum_version),
|
|
'smf' => sprintf($forum_copyright, $forum_version),
|
|
-
|
|
|
|
|
|
+ 'other' => array(
|
|
|
|
+ '<a href="http://p.yusukekamiyamane.com/">Fugue Icons</a> | © 2012 Yusuke Kamiyamane | These icons are licensed under a Creative Commons Attribution 3.0 License',
|
|
|
|
+ ),
|
|
/* Modification Authors: You may add a copyright statement to this array for your mods.
|
|
/* Modification Authors: You may add a copyright statement to this array for your mods.
|
|
Copyright statements should be in the form of a value only without a array key. I.E.:
|
|
Copyright statements should be in the form of a value only without a array key. I.E.:
|
|
'Some Mod by Thantos © 2010',
|
|
'Some Mod by Thantos © 2010',
|
|
@@ -721,7 +723,7 @@ function Credits($in_admin = false)
|
|
$title = (empty($credit_info['title']) ? $row['name'] : $smcFunc['htmlspecialchars']($credit_info['title'])) . ' : ' . $version;
|
|
$title = (empty($credit_info['title']) ? $row['name'] : $smcFunc['htmlspecialchars']($credit_info['title'])) . ' : ' . $version;
|
|
|
|
|
|
// build this one out and stash it away
|
|
// build this one out and stash it away
|
|
- $mod_name = empty($credit_info['url']) ? '<strong>' . $title . '</strong>' : '<a href="' . $credit_info['url'] . '">' . '<strong>' . $title . '</strong>' . '</a>';
|
|
|
|
|
|
+ $mod_name = empty($credit_info['url']) ? $title : '<a href="' . $credit_info['url'] . '">' . $title . '</a>';
|
|
$mods[] = $mod_name . (!empty($license) ? ' | ' . $license : '') . (!empty($copyright) ? ' | ' . $copyright : '');
|
|
$mods[] = $mod_name . (!empty($license) ? ' | ' . $license : '') . (!empty($copyright) ? ' | ' . $copyright : '');
|
|
}
|
|
}
|
|
cache_put_data('mods_credits', $mods, 86400);
|
|
cache_put_data('mods_credits', $mods, 86400);
|