summaryrefslogtreecommitdiffstatshomepage
path: root/data
diff options
context:
space:
mode:
Diffstat (limited to 'data')
-rw-r--r--data/config.php.dist6
-rw-r--r--data/templates/bookmarks.tpl.php2
2 files changed, 7 insertions, 1 deletions
diff --git a/data/config.php.dist b/data/config.php.dist
index 302d55f..0f849e2 100644
--- a/data/config.php.dist
+++ b/data/config.php.dist
@@ -7,6 +7,12 @@
* See config.default.inc.php for more options.
*/
+/**
+ * Array for defaults.
+ *
+ * @var array
+ */
+$defaults = array();
/**
* The name of this site.
diff --git a/data/templates/bookmarks.tpl.php b/data/templates/bookmarks.tpl.php
index e32d3c9..44dfe90 100644
--- a/data/templates/bookmarks.tpl.php
+++ b/data/templates/bookmarks.tpl.php
@@ -256,7 +256,7 @@ if ($currenttag!= '') {
foreach ($bookmarks as $key => &$row) {
switch ($row['bStatus']) {
case 0:
- $access = '';
+ $access = ' public';
break;
case 1:
$access = ' shared';