Skip to content

vt8.x customer portal Typing errors in customerportal\classes\Vtiger\connectors\Portal.php

In the file: customerportal\Classes\Vtiger\Connectors\Portal.php


Line 66 (incorrect):

if ($language == '') {

Correction:

if (empty($language)) {


Line 88 (incorrect):

Portal_Session::set(‘parent_idLabel’, $response[‘sccount_id’][‘label’]);

Correction:

Portal_Session::set(‘parent_idLabel’, $response[‘account_id’][‘label’]);

Edited by Daniel Lennartz