more tag infrastructure
parent
48ee3fa3b9
commit
672ecc7f7d
2
boot.php
2
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' );
|
||||
|
|
|
@ -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',
|
||||
|
|
BIN
images/icons.png
BIN
images/icons.png
Binary file not shown.
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
|
@ -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` ");
|
||||
}
|
||||
|
|
|
@ -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); }
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
|
@ -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); }
|
||||
|
||||
|
|
Loading…
Reference in New Issue