aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-09-18 22:42:47 -0700
committerFriendika <info@friendika.com>2011-09-18 22:42:47 -0700
commit672ecc7f7d2e17b0d35eccc94e6fa1b5eef0d108 (patch)
tree92e9fefe146ce991778538d29fcebac8b60722f3
parent48ee3fa3b9c540185fb3691ce6a971dd2cf1fd68 (diff)
downloadvolse-hubzilla-672ecc7f7d2e17b0d35eccc94e6fa1b5eef0d108.tar.gz
volse-hubzilla-672ecc7f7d2e17b0d35eccc94e6fa1b5eef0d108.tar.bz2
volse-hubzilla-672ecc7f7d2e17b0d35eccc94e6fa1b5eef0d108.zip
more tag infrastructure
-rw-r--r--boot.php2
-rw-r--r--database.sql1
-rw-r--r--images/icons.pngbin11885 -> 12389 bytes
-rw-r--r--update.php5
-rw-r--r--view/theme/duepuntozero/style.css1
-rw-r--r--view/theme/greenzero/greenicons.pngbin11888 -> 12317 bytes
-rw-r--r--view/theme/loozah/style.css1
7 files changed, 8 insertions, 2 deletions
diff --git a/boot.php b/boot.php
index 3e9596ac3..d312682ac 100644
--- a/boot.php
+++ b/boot.php
@@ -9,7 +9,7 @@ require_once("include/pgettext.php");
define ( 'FRIENDIKA_VERSION', '2.3.1108' );
define ( 'DFRN_PROTOCOL_VERSION', '2.21' );
-define ( 'DB_UPDATE_VERSION', 1089 );
+define ( 'DB_UPDATE_VERSION', 1090 );
define ( 'EOL', "<br />\r\n" );
define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' );
diff --git a/database.sql b/database.sql
index ba52d9f35..b1580ec2c 100644
--- a/database.sql
+++ b/database.sql
@@ -407,6 +407,7 @@ CREATE TABLE IF NOT EXISTS `user` (
`blocked` tinyint(1) unsigned NOT NULL DEFAULT '0',
`blockwall` tinyint(1) unsigned NOT NULL DEFAULT '0',
`hidewall` tinyint(1) unsigned NOT NULL DEFAULT '0',
+ `blocktags` tinyint(1) unsigned NOT NULL DEFAULT '0',
`notify-flags` int(11) unsigned NOT NULL DEFAULT '65535',
`page-flags` int(11) unsigned NOT NULL DEFAULT '0',
`prvnets` tinyint(1) NOT NULL DEFAULT '0',
diff --git a/images/icons.png b/images/icons.png
index 494555aa6..dd3af3aee 100644
--- a/images/icons.png
+++ b/images/icons.png
Binary files differ
diff --git a/update.php b/update.php
index 6101efea6..94d0b6274 100644
--- a/update.php
+++ b/update.php
@@ -1,6 +1,6 @@
<?php
-define( 'UPDATE_VERSION' , 1089 );
+define( 'UPDATE_VERSION' , 1090 );
/**
*
@@ -750,3 +750,6 @@ function update_1088() {
ADD `expire_notification_sent` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00' AFTER `account_expires_on` ");
}
+function update_1089() {
+ q("ALTER TABLE `user` ADD `blocktags` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `hidewall` ");
+}
diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css
index acd7d5bb5..9bed3e972 100644
--- a/view/theme/duepuntozero/style.css
+++ b/view/theme/duepuntozero/style.css
@@ -2749,6 +2749,7 @@ a.mail-list-link {
.off { background-position: 0px -48px; }
.starred { background-position: -16px -48px; }
.unstarred { background-position: -32px -48px; }
+.tagged { background-position: -48px -48px; }
.icon.dim { opacity: 0.3;filter:alpha(opacity=30); }
diff --git a/view/theme/greenzero/greenicons.png b/view/theme/greenzero/greenicons.png
index b20ac5c0d..2644e4284 100644
--- a/view/theme/greenzero/greenicons.png
+++ b/view/theme/greenzero/greenicons.png
Binary files differ
diff --git a/view/theme/loozah/style.css b/view/theme/loozah/style.css
index 8636f1085..d9b0b6f2e 100644
--- a/view/theme/loozah/style.css
+++ b/view/theme/loozah/style.css
@@ -2732,6 +2732,7 @@ a.mail-list-link {
.off { background-position: 0px -48px; }
.starred { background-position: -16px -48px; }
.unstarred { background-position: -32px -48px; }
+.tagged { background-position: -48px -48px; }
.icon.dim { opacity: 0.3;filter:alpha(opacity=30); }