From f05f7017646d824e840f4a1cbce1f224bcb340b5 Mon Sep 17 00:00:00 2001 From: Mikael Nordfeldth Date: Sun, 1 Feb 2015 21:35:25 +0100 Subject: [PATCH] HTML5 placeholder for notice input form. --- lib/noticeform.php | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/lib/noticeform.php b/lib/noticeform.php index 012619a0ba..e241b5812c 100644 --- a/lib/noticeform.php +++ b/lib/noticeform.php @@ -28,11 +28,7 @@ * @link http://status.net/ */ -if (!defined('STATUSNET') && !defined('LACONICA')) { - exit(1); -} - -require_once INSTALLDIR.'/lib/form.php'; +if (!defined('GNUSOCIAL')) { exit(1); } /** * Form for posting a notice @@ -209,6 +205,7 @@ class NoticeForm extends Form // XXX: vary by defined max size $this->out->element('textarea', array('class' => 'notice_data-text', 'required' => 'required', + 'placeholder' => _('Share your status...'), 'cols' => 35, 'rows' => 4, 'name' => 'status_textarea'),