diff options
| author | winter | 2025-01-20 17:43:17 +0000 |
|---|---|---|
| committer | winter | 2025-01-20 17:43:17 +0000 |
| commit | 6b78446c1d5b76438d40bbe68aa0397de533e61a (patch) | |
| tree | f2e06477b74e2b380b1922179e3cb16ca1420481 /templates/mobilepane_left.php | |
| parent | 55433eeca50ff840cb0b660f8f9de44b2bc6825f (diff) | |
various avatar tweaks and profile above note form
Diffstat (limited to 'templates/mobilepane_left.php')
| -rw-r--r-- | templates/mobilepane_left.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/mobilepane_left.php b/templates/mobilepane_left.php index f71279c..daab401 100644 --- a/templates/mobilepane_left.php +++ b/templates/mobilepane_left.php @@ -1,6 +1,8 @@ <?php use Digitigrade\GlobalSettings; +use Digitigrade\Model\UserAccount; +$user = UserAccount::requireByCurrentSession(); $settings = GlobalSettings::getInstance(); ?> <!DOCTYPE html> @@ -29,7 +31,7 @@ $settings = GlobalSettings::getInstance(); ]; call_template('navigation_links', ['links' => $links]); - call_template('write_note_form'); + call_template('write_note_form', ['actor' => $user->actor]); call_template('left_side_navigation'); ?> <p class="versionInfo"><?= sprintf(__('version'), get_version()) ?></p> |
