From: Alexander Kampmann Date: Thu, 22 Mar 2012 11:50:02 +0000 (+0100) Subject: Merge branch 'master' of git://github.com/friendica/friendica X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=cea7ca1df4fd8065c38a4f43a0f13ba89e8b94e2;p=friendica.git Merge branch 'master' of git://github.com/friendica/friendica Conflicts: boot.php database.sql include/template_processor.php update.php --- cea7ca1df4fd8065c38a4f43a0f13ba89e8b94e2 diff --cc boot.php index e2494092de,04e16e64dc..9fc9b7f7ef --- a/boot.php +++ b/boot.php @@@ -9,9 -9,9 +9,10 @@@ require_once('include/nav.php') require_once('include/cache.php'); define ( 'FRIENDICA_PLATFORM', 'Friendica'); - define ( 'FRIENDICA_VERSION', '2.3.1278' ); - define ( 'DFRN_PROTOCOL_VERSION', '2.22' ); - define ( 'DB_UPDATE_VERSION', 1132 ); ++ + define ( 'FRIENDICA_VERSION', '2.3.1288' ); + define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); + define ( 'DB_UPDATE_VERSION', 1133 ); define ( 'EOL', "
\r\n" ); define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' ); diff --cc database.sql index e07e9e0701,327b482c06..13a4014648 --- a/database.sql +++ b/database.sql @@@ -857,13 -860,10 +860,9 @@@ INDEX ( `ham` ) INDEX ( `term` ) ) ENGINE = MyISAM DEFAULT CHARSET=utf8; - CREATE TABLE IF NOT EXISTS `profiling` ( - + CREATE TABLE IF NOT EXISTS `userd` ( `id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY , - `function` VARCHAR( 255 ) NOT NULL , - `file` VARCHAR( 255 ) NOT NULL , - `line` INT NOT NULL DEFAULT '-1', - `class` VARCHAR( 255 ) NOT NULL , - `time` FLOAT( 10, 2 ) NOT NULL , - INDEX ( `function` ) , - INDEX ( `file` ) + `username` CHAR( 255 ) NOT NULL, + INDEX ( `username` ) ) ENGINE = MyISAM DEFAULT CHARSET=utf8; + diff --cc update.php index 8c8a2a5e42,a69742a949..6231943ec3 --- a/update.php +++ b/update.php @@@ -1,6 -1,6 +1,7 @@@