]> git.mxchange.org Git - friendica.git/commitdiff
Merge branch 'master' of git://github.com/friendica/friendica
authorAlexander Kampmann <programmer@nurfuerspam.de>
Thu, 22 Mar 2012 11:50:02 +0000 (12:50 +0100)
committerAlexander Kampmann <programmer@nurfuerspam.de>
Thu, 22 Mar 2012 11:50:02 +0000 (12:50 +0100)
Conflicts:
boot.php
database.sql
include/template_processor.php
update.php

1  2 
.htaccess
boot.php
database.sql
update.php

diff --cc .htaccess
Simple merge
diff --cc boot.php
index e2494092de370c33e63f4a2a5b3d638029a8d34a,04e16e64dc46682485026e6563dd6299c4d6957e..9fc9b7f7efb31ecf9fe79f09fed854e14a92bc09
+++ 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',                    "<br />\r\n"     );
  define ( 'ATOM_TIME',              'Y-m-d\TH:i:s\Z' );
diff --cc database.sql
index e07e9e0701065ff24efaf2806781eb56c5d29d68,327b482c0690e929417d3520ba36778050f60464..13a40146484af8e78b3eaa45253d9e8f7341790a
@@@ -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 8c8a2a5e425ad80b37464f03f324455333562e49,a69742a949d8337cef19b5fba88a6d97c3b8f4e9..6231943ec3d1fbe02f4797e61bf8cd01591ceb6f
@@@ -1,6 -1,6 +1,7 @@@
  <?php
  
- define( 'UPDATE_VERSION' , 1132 );
++
+ define( 'UPDATE_VERSION' , 1133 );
  
  /**
   *