mirror of
https://github.com/e107inc/e107.git
synced 2025-08-01 20:30:39 +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>";*/
|
<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 .= "
|
$text .= "
|
||||||
<td class='text-left'>".$value['date']."</td>
|
<td class='text-left'>".$value['date']."</td>
|
||||||
|
Reference in New Issue
Block a user