diff options
author | Aaron Parecki <aaron@parecki.com> | 2016-04-06 11:21:23 -0700 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2016-04-06 11:21:23 -0700 |
commit | af92c0deac162cba11dba2e13d2d8e4801af00b2 (patch) | |
tree | 1789cc4e580bc9985908b8d56e80f2c568fc6f3c /controllers | |
parent | 8409b668d89294aada62bdebb7a69c504ad3833e (diff) |
add tweet text length countdown on note interface
Diffstat (limited to 'controllers')
-rw-r--r-- | controllers/controllers.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/controllers/controllers.php b/controllers/controllers.php index 475e620..95d3aa5 100644 --- a/controllers/controllers.php +++ b/controllers/controllers.php @@ -83,6 +83,7 @@ $app->get('/new', function() use($app) { 'syndication_targets' => json_decode($user->syndication_targets, true), 'test_response' => $test_response, 'location_enabled' => $user->location_enabled, + 'user' => $user, 'authorizing' => false )); $app->response()->body($html); |