Changeset 11967
- Timestamp:
- 09/03/07 12:34:48 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/midcom/midcom.helper.datamanager2/datamanager.php
r11955 r11967 46 46 * @var string schema_name 47 47 */ 48 var $schema_name 48 var $schema_name = ''; 49 49 50 /** 50 51 * This is the storage implementation which is used for operation on the types. It encaspulates … … 207 208 if (!isset($config['type']) ) 208 209 { 209 throw new Exception("The field "$name"is missing type");210 throw new Exception("The field {$name} is missing type"); 210 211 } 211 212 trunk/midcom/midcom.helper.datamanager2/type/blobs.php
r11359 r11967 199 199 { 200 200 $attachment = new midcom_baseclasses_database_attachment($guid); 201 if (! $attachment) 201 if ( ! $attachment 202 || !$attachment->guid) 202 203 { 203 204 debug_push_class(__CLASS__, __FUNCTION__);
