summaryrefslogtreecommitdiff
path: root/views/settings.php
diff options
context:
space:
mode:
authorDavid Shanske <david@shanske.com>2019-02-24 19:44:12 +0000
committerDavid Shanske <david@shanske.com>2019-02-24 19:44:12 +0000
commitd30486e7c610e2ba2998ed5997fd86c6dcae5c77 (patch)
tree2780d7f08cda7faef0132b0b615dec2fcbccc59c /views/settings.php
parentacc8a8e673b1b71ea828422ec15f77450a409983 (diff)
Simple Addition of Profile Data to Quill
Diffstat (limited to 'views/settings.php')
-rw-r--r--views/settings.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/views/settings.php b/views/settings.php
index f94b9fe..51d3a6b 100644
--- a/views/settings.php
+++ b/views/settings.php
@@ -8,6 +8,13 @@
<td>me</td>
<td><code><?= $this->user->url; ?></code> (should be your URL)</td>
</tr>
+ <?php if ( profile('name') ) {
+ ?>
+ <tr>
+ <td>User Name</td>
+ <td><code><?= profile('name'); ?></code> </td>
+ </tr>
+ <?php } ?>
<tr>
<td>scope</td>
<td><code><?= $this->user->micropub_scope ?></code> (should be a space-separated list of permissions including "create")</td>