]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
add email notify flag for @-replies
authorEvan Prodromou <evan@controlyourself.ca>
Mon, 16 Feb 2009 23:24:43 +0000 (18:24 -0500)
committerEvan Prodromou <evan@controlyourself.ca>
Mon, 16 Feb 2009 23:24:43 +0000 (18:24 -0500)
classes/User.php
classes/laconica.ini
db/laconica.sql

index a6a1b11b9f502d7a6a27d155ce840eb92154a0ae..495a982360e04c716a2a52708d4f8ff87c197283 100644 (file)
@@ -40,6 +40,7 @@ class User extends Memcached_DataObject
     public $emailnotifyfav;                  // tinyint(1)   default_1
     public $emailnotifynudge;                // tinyint(1)   default_1
     public $emailnotifymsg;                  // tinyint(1)   default_1
+    public $emailnotifyattn;                 // tinyint(1)   default_1
     public $emailmicroid;                    // tinyint(1)   default_1
     public $language;                        // varchar(50)
     public $timezone;                        // varchar(50)
@@ -62,8 +63,10 @@ class User extends Memcached_DataObject
     public $modified;                        // timestamp()   not_null default_CURRENT_TIMESTAMP
 
     /* Static get */
-    function staticGet($k,$v=null)
-    { return Memcached_DataObject::staticGet('User',$k,$v); }
+    function staticGet($k,$v=NULL)
+    {
+        return Memcached_DataObject::staticGet('User',$k,$v);
+    }
 
     /* the code above is auto generated do not remove the tag below */
     ###END_AUTOCODE
index 19267f2688c7eb98b67c61d5cd1ca563c50e53f3..5fd2cd1f86661e182414198509d29032d8693d06 100755 (executable)
@@ -332,6 +332,7 @@ emailnotifysub = 17
 emailnotifyfav = 17
 emailnotifynudge = 17
 emailnotifymsg = 17
+emailnotifyattn = 17
 emailmicroid = 17
 language = 2
 timezone = 2
index 15f03a978fe836ca2d648e37608af54cb849348c..dd93a727b71f5504f168b8342483b7107984cbbb 100644 (file)
@@ -50,6 +50,7 @@ create table user (
     emailnotifyfav tinyint default 1 comment 'Notify by email of favorites',
     emailnotifynudge tinyint default 1 comment 'Notify by email of nudges',
     emailnotifymsg tinyint default 1 comment 'Notify by email of direct messages',
+    emailnotifyattn tinyint default 1 comment 'Notify by email of @-replies',
     emailmicroid tinyint default 1 comment 'whether to publish email microid',
     language varchar(50) comment 'preferred language',
     timezone varchar(50) comment 'timezone',