Allow users to permanently hide "share" buttons in settings
0/2
threads resolved
changed the description
approved this merge request
327 332 */ 328 333 public function getOwnerObj() 329 334 { 330 if (!$this->ownerObj && $this->ownerGuid) { 335 if ($this->fullExport || (!$this->ownerObj && $this->ownerGuid)) { - Developer
Why are we restricting this to full export? The previous code handled more instances where we reconstituted the owner object if it wasn't there.
922 941 $export['eth_wallet'] = $this->getEthWallet() ?: ''; 923 942 $export['rating'] = $this->getRating(); 924 943 944 $export['hide_share_buttons'] = $this->getHideShareButtons(); - Developer
I see we're handling blogs and newsfeed, does this work for images / videos?