Changeset 360 for trunk/Modules/Module.php
- Timestamp:
- Jan 18, 2012, 1:42:13 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Module.php
r358 r360 93 93 `Installed` int(11) NOT NULL, 94 94 `Description` text COLLATE utf8_czech_ci NOT NULL, 95 `Dependecies` varchar(255) COLLATE utf8_czech_ci NOT NULL, 95 96 PRIMARY KEY (`Id`) 96 97 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_czech_ci AUTO_INCREMENT=1;'); … … 141 142 'Version' => $Module->Version, 'Creator' => $Module->Creator, 142 143 'Description' => $Module->Description, 'License' => $Module->License, 143 'Installed' => 0 ));144 'Installed' => 0, 'Dependecies' => implode(',', $Module->Dependencies))); 144 145 unset($Module); 145 146 } else throw new Exception('Missing class '.$ModuleClassName.' in module '.$ModuleName);
Note:
See TracChangeset
for help on using the changeset viewer.