Der Datensatz #heidi.stampfer@dentag-italia.com in Tabelle offer konnte nicht gefunden werden. in library/class.model.php on line 210library/class.model.php
load('heidi.stampfer@dentag-italia.com')102 // $id kann ID oder Daten enthalten
103 if($id !== null) {
104 // Objekt anhand Array füllen
105 if (is_array($id)) $this->loadData($id);
106 // Datensatz laden
107 else $this->load($id);
108 }
109
110 // Beziehungen laden
111 foreach($this->relations as $key=> &$rel)
112 $rel = new Relation($this, $key, $rel);
module/offer/form.php
__construct('heidi.stampfer@dentag-italia.com')1 <?
2 $model = new Offer($request->id);
3 if($model->owner_id === null)
4 $model->owner_id = Auth::getUserId();
5 Auth::protect(null, $model->owner_id);
6
7 if($request->isPost()) {
library/class.module.php
include('/www/htdocs/w01a2832/projekte/kunden/dentag-italia.com/contentcontrol/module/offer/form.php')567 // Bisherige Ausgaben werden als Fehler ausgegeben. Die Ausgabe wird auch auf UTF-8 BOM kontrolliert
568 if(strpos(ob_get_contents(), "\xEF\xBB\xBF") !== false)
569 die('BOM!');
570 // Include
571 try {
572 include($path);
573 // Standardhandler für nicht gefundene Datensätze
574 } catch(RecordNotFoundException $ex) {
575 // Lokal Trace anzeigen
576 if(app()->local)
577 throw $ex;
library/class.app.php
exec()
394
395 // Sicherheitsregeln auf Module anwendne
396 Module::applySecurity();
397
398 // Ausführen
399 $module->exec();
400
401 // Wenn Weiterleitung vorhanden, dann ausführen
402 if($this->hasReservedRedirect()) $this->executeReservedRedirect();
403 }
404
30
31 // Installation
32 if(app()->request->has('install') && file_exists(app()->appRoot('_required'))) Module::install();
33
34 // Ausführen
35 app()->execRequest();