diff options
author | zotlabs <mike@macgirvin.com> | 2017-05-22 00:57:56 -0700 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-05-23 21:48:58 +0200 |
commit | 3a9e5f0f98d28959ecc73539a56c66ec2ff10016 (patch) | |
tree | 0a4ffe63c67c331904c6f97fd8b74f46e8c3266e | |
parent | 50c9aec43652726b17e0fee3b555fb1344f38dbd (diff) | |
download | volse-hubzilla-3a9e5f0f98d28959ecc73539a56c66ec2ff10016.tar.gz volse-hubzilla-3a9e5f0f98d28959ecc73539a56c66ec2ff10016.tar.bz2 volse-hubzilla-3a9e5f0f98d28959ecc73539a56c66ec2ff10016.zip |
schema fixes
-rw-r--r-- | Zotlabs/Module/Like.php | 4 | ||||
-rw-r--r-- | install/schema_mysql.sql | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/Zotlabs/Module/Like.php b/Zotlabs/Module/Like.php index 5ce8ec7f0..71336e8f3 100644 --- a/Zotlabs/Module/Like.php +++ b/Zotlabs/Module/Like.php @@ -373,6 +373,10 @@ class Like extends \Zotlabs\Web\Controller { $links = array(array('rel' => 'alternate','type' => 'text/html', 'href' => $item['plink'])); $objtype = (($item['resource_type'] === 'photo') ? ACTIVITY_OBJ_PHOTO : ACTIVITY_OBJ_NOTE ); + + if($objtype === ACTIVITY_OBJ_NOTE && (! intval($item['item_thread_top']))) + $objtype = ACTIVITY_OBJ_COMMENT; + $body = $item['body']; diff --git a/install/schema_mysql.sql b/install/schema_mysql.sql index ceb63fce9..4f5b180ad 100644 --- a/install/schema_mysql.sql +++ b/install/schema_mysql.sql @@ -2,9 +2,9 @@ CREATE TABLE IF NOT EXISTS `abconfig` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `chan` int(10) unsigned NOT NULL DEFAULT 0 , - `xchan` char(255) NOT NULL DEFAULT '', - `cat` char(255) NOT NULL DEFAULT '', - `k` char(255) NOT NULL DEFAULT '', + `xchan` char(191) NOT NULL DEFAULT '', + `cat` char(191) NOT NULL DEFAULT '', + `k` char(191) NOT NULL DEFAULT '', `v` mediumtext NOT NULL, PRIMARY KEY (`id`), KEY `chan` (`chan`), |