]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
EmailRegistration plugin flow requires a confirmation address before user creation
authorDiogo Cordeiro <diogo@fc.up.pt>
Mon, 3 Jun 2019 14:52:36 +0000 (15:52 +0100)
committerDiogo Cordeiro <diogo@fc.up.pt>
Fri, 7 Jun 2019 14:02:09 +0000 (15:02 +0100)
classes/Confirm_address.php
lib/framework.php

index f8b5b21124c9f03edaba9406e7a618eff6a7b813..4aaf3a16741d393571a824ecd989fe0f92f6a917 100644 (file)
@@ -3,7 +3,7 @@
  * Table Definition for confirm_address
  */
 
-class Confirm_address extends Managed_DataObject 
+class Confirm_address extends Managed_DataObject
 {
     public $__table = 'confirm_address';                 // table name
     public $code;                            // varchar(32)  primary_key not_null
@@ -11,8 +11,8 @@ class Confirm_address extends Managed_DataObject
     public $address;                         // varchar(191)   not_null   not 255 because utf8mb4 takes more space
     public $address_extra;                   // varchar(191)   not_null   not 255 because utf8mb4 takes more space
     public $address_type;                    // varchar(8)   not_null
-    public $claimed;                         // datetime()  
-    public $sent;                            // datetime()  
+    public $claimed;                         // datetime()
+    public $sent;                            // datetime()
     public $modified;                        // timestamp()   not_null default_CURRENT_TIMESTAMP
 
     public static function schemaDef()
@@ -20,7 +20,7 @@ class Confirm_address extends Managed_DataObject
         return array(
             'fields' => array(
                 'code' => array('type' => 'varchar', 'length' => 32, 'not null' => true, 'description' => 'good random code'),
-                'user_id' => array('type' => 'int', 'not null' => true, 'description' => 'user who requested confirmation'),
+                'user_id' => array('type' => 'int', 'default' => 0, 'description' => 'user who requested confirmation'),
                 'address' => array('type' => 'varchar', 'length' => 191, 'not null' => true, 'description' => 'address (email, xmpp, SMS, etc.)'),
                 'address_extra' => array('type' => 'varchar', 'length' => 191, 'description' => 'carrier ID, for SMS'),
                 'address_type' => array('type' => 'varchar', 'length' => 8, 'not null' => true, 'description' => 'address type ("email", "xmpp", "sms")'),
index 1614e23352ad8e455f5318e75622a41fe2d7daa2..91e5f4ccd27a5be3da56a933f83e50f183653619 100644 (file)
@@ -22,7 +22,7 @@ if (!defined('GNUSOCIAL')) { exit(1); }
 define('GNUSOCIAL_ENGINE', 'GNU social');
 define('GNUSOCIAL_ENGINE_URL', 'https://www.gnu.org/software/social/');
 
-define('GNUSOCIAL_BASE_VERSION', '1.19.0');
+define('GNUSOCIAL_BASE_VERSION', '1.19.1');
 define('GNUSOCIAL_LIFECYCLE', 'rc0'); // 'dev', 'alpha[0-9]+', 'beta[0-9]+', 'rc[0-9]+', 'release'
 
 define('GNUSOCIAL_VERSION', GNUSOCIAL_BASE_VERSION . '-' . GNUSOCIAL_LIFECYCLE);