mirror of
https://github.com/e107inc/e107.git
synced 2025-07-31 03:40:37 +02:00
Fixes #4782 - Incorrect e-token when adding new language
Malformed URL due to missing ampersand, so e-token was incorrect thus creating an "unauthorized access" error
This commit is contained in:
@@ -432,7 +432,7 @@ if(!empty($_GET['iframe']))
|
||||
<td><a href='".$value['authorURL']."'>".$value['author']."</a></td>";*/
|
||||
|
||||
|
||||
$url = 'language.php?mode=main&action=download&e-token='.e_TOKEN.'id='.$value['name']; // $value['url']
|
||||
$url = 'language.php?mode=main&action=download&e-token='.e_TOKEN.'&id='.$value['name']; // $value['url']
|
||||
|
||||
$text .= "
|
||||
<td class='text-left'>".$value['date']."</td>
|
||||
|
Reference in New Issue
Block a user