diff options
author | Aaron Parecki <aaron@parecki.com> | 2019-10-31 17:56:33 -0700 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2019-10-31 17:56:33 -0700 |
commit | 37d315575f6decdcfac5fbf738043b09fead3939 (patch) | |
tree | 494e4810542af699df2122c1119d8d36f6770889 | |
parent | 2a8899754a45857706cab4f1bd3ec3ecf7054358 (diff) |
add Protected to visibility options
-rw-r--r-- | views/new-post.php | 2 |
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; |