Remove token validation from Core

Causes issues for other platforms.
content-hub
Frode Petterson 2020-11-12 15:04:10 +01:00
parent aa6c909572
commit 8a29796cab
1 changed files with 1 additions and 9 deletions

View File

@ -3831,18 +3831,10 @@ class H5PCore {
* Unpublish content from content hub
*
* @param integer $hubId Content hub id
* @param string $token CSRF token
*
* @return bool True if successful
*/
public function hubUnpublishContent($hubId, $token) {
if (!self::validToken('content_hub_token', $token)) {
$msg = $this->h5pF->t('Could not unpublish content because token was invalid. Please try again.');
$this->h5pF->setErrorMessage($msg);
return false;
}
public function hubUnpublishContent($hubId) {
$headers = array(
'Authorization' => $this->hubGetAuthorizationHeader(),
'Accept' => 'application/json',