Fatal Error: Call to a member function....

rollerueckwaerts

Erfahrenes Mitglied
.... of a non object in line 11

Vor dieser Fehlermeldung stehe ich nun gerad :) nach ein wenig googlen fand ich diese Hilfestellung

Nur irgendwie nicht die Lösung meines Problems :P

PHP:
<?php
defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );

$access = new stdClass();
$access->canEdit = $acl->acl_check( 'action', 'edit', 'users', $my->usertype, 'content', 'all' );
$access->canEditOwn = $acl->acl_check( 'action', 'edit', 'users', $my->usertype, 'content', 'own' );

Was kann da nich stimmen?
Vielleich hat ja jemand nen guten Tipp.

Lg
Tob
 
> .... of a non object in line 11

Toll, und was steht in Zeile 11 ?
Ein Object gibt es nicht, entweder ist $acl->acl_check oder $my->usertype falsch.
Zu welcher Klasse gehört das ?
 
Zurück