diff options
| author | Max Kremmel <xing@synapse.plus.com> | 2008-10-31 08:12:24 +0000 |
|---|---|---|
| committer | Max Kremmel <xing@synapse.plus.com> | 2008-10-31 08:12:24 +0000 |
| commit | 67b3ac75305b972b7a5235a84346be4394b299e0 (patch) | |
| tree | 682fb300f29377ef9f6a647631922d41b3daa6a0 | |
| parent | 23f2fa46e1a974fb972849f344fdf8f465cb8394 (diff) | |
| download | newsletters-67b3ac75305b972b7a5235a84346be4394b299e0.tar.gz newsletters-67b3ac75305b972b7a5235a84346be4394b299e0.tar.bz2 newsletters-67b3ac75305b972b7a5235a84346be4394b299e0.zip | |
renamed dep stuff to requirement stuff, clean up schema_inc files, move version info from info hash to registerPackageVersion90, move requirements to registerRequirements()
| -rw-r--r-- | admin/schema_inc.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/admin/schema_inc.php b/admin/schema_inc.php index 5de2d90..062dfd5 100644 --- a/admin/schema_inc.php +++ b/admin/schema_inc.php @@ -94,11 +94,10 @@ foreach( array_keys( $tables ) AS $tableName ) { $gBitInstaller->registerPackageInfo( NEWSLETTERS_PKG_NAME, array( 'description' => "Newsletters is for emailing users updates about your site.", 'license' => '<a href="http://www.gnu.org/licenses/licenses.html#LGPL">LGPL</a>', - 'version' => '1.0', - 'state' => 'R2', - 'dependencies' => '', ) ); +$gBitInstaller->registerPackageVersion( NEWSLETTERS_PKG_NAME, '1.0.0' ); + // ### Indexes $indices = array ( 'mail_sub_nl_idx' => array( 'table' => 'mail_subscriptions', 'cols' => 'content_id', 'opts' => NULL ), |
