mirror of
https://github.com/e107inc/e107.git
synced 2025-03-14 01:19:44 +01: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:
parent
29331ea635
commit
a62f5985fd
@ -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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user