*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
+ *
*/
namespace Friendica\Module\Item;
$page = $this->page;
if (Contact::exists([
- 'unsearchable' => true,
- 'id' => [$item['contact-id'], $item['author-id'], $item['owner-id']]
+ 'unsearchable' => true, 'id' => [$item['contact-id'], $item['author-id'], $item['owner-id']]
])) {
$page['htmlhead'] .= "<meta content=\"noindex, noarchive\" name=\"robots\" />\n";
}
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
+ *
*/
namespace Friendica\Module\Item;
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
- * See update_profile.php for documentation
*/
namespace Friendica\Module\Update;
$item = Post::selectFirst(
['uid', 'parent-uri-id', 'uri-id'],
['uri-id' => $uriId, 'uid' => [0, $profileUid]],
- ['order' => ['uid' => true]]
+ ['order' => ['uid' => true]]
);
if (empty($item)) {