summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--views/new-post.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/views/new-post.php b/views/new-post.php
index dad9427..9e678b3 100644
--- a/views/new-post.php
+++ b/views/new-post.php
@@ -84,7 +84,7 @@
<label for="visibility">Visibility</label>
<select class="form-control" id="visibility">
<?php
- foreach(['Public','Unlisted','Private'] as $v):
+ foreach(['Public','Unlisted','Protected','Private'] as $v):
if(in_array(strtolower($v), $this->supported_visibility)):
echo '<option value="'.strtolower($v).'">'.$v.'</option>';
endif;