summaryrefslogtreecommitdiff
path: root/admin
diff options
context:
space:
mode:
authorMax Kremmel <xing@synapse.plus.com>2008-10-31 08:12:24 +0000
committerMax Kremmel <xing@synapse.plus.com>2008-10-31 08:12:24 +0000
commit67b3ac75305b972b7a5235a84346be4394b299e0 (patch)
tree682fb300f29377ef9f6a647631922d41b3daa6a0 /admin
parent23f2fa46e1a974fb972849f344fdf8f465cb8394 (diff)
downloadnewsletters-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()
Diffstat (limited to 'admin')
-rw-r--r--admin/schema_inc.php5
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 ),