Torrents Stats
- Partagées
- 130 Go
- Téléchargées
- 1 Mo
- Ratio
- 133120
- Messages
- 1 117
- J'aime
- 1 093
- Trophées
- 830
- Inscrit
- 26 Novembre 2015
Dans le fichier library/XenForo/Link.php, trouver le morceau de code suivant:
Modifier plus précisément cette ligne:
Rappelez-vous que vous aurez besoin d'appliquer de nouveau cette modification après chaque mise à jour et mettre à jour tous les liens de raccourci pour aller dans l'admin CP (tels que le coin en haut à droite) en apportant les modifications pertinentes du code.
Code:
public static function buildAdminLink($type, $data = null, array $extraParams = array())
{
$type = self::_checkForFullLink($type, $fullLink, $fullLinkPrefix);
$link = self::_buildLink('admin', $type, $data, $extraParams);
$queryString = self::buildQueryString($extraParams);
if ($queryString !== '' && $link !== '')
{
$append = $link . '&' . $queryString;
}
else
{
// 1 or neither of these has content
$append = $link . $queryString;
}
if (($hashPos = strpos($type, '#')) !== false)
{
$append .= substr($type, $hashPos);
}
$outputLink = 'admin.php' . ($append !== '' ? '?' : '') . $append;
if ($fullLink)
{
$outputLink = $fullLinkPrefix . $outputLink;
}
return $outputLink;
}
Code:
$outputLink = 'admin.php' . ($append !== '' ? '?' : '') . $append;