]> git.mxchange.org Git - friendica.git/commitdiff
add openid slot to db
authorFriendika <info@friendika.com>
Sun, 14 Nov 2010 23:17:27 +0000 (15:17 -0800)
committerFriendika <info@friendika.com>
Sun, 14 Nov 2010 23:17:27 +0000 (15:17 -0800)
boot.php
database.sql
include/poller.php
update.php

index ad1df4ed13e4f3aa7889e971c537b0414ba4dcf5..3ed34977725ab15f17143929516254a7eb251bfc 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -2,7 +2,7 @@
 
 set_time_limit(0);
 
-define ( 'BUILD_ID',               1016   );
+define ( 'BUILD_ID',               1017   );
 define ( 'DFRN_PROTOCOL_VERSION',  '2.0'  );
 
 define ( 'EOL',                    "<br />\r\n"     );
@@ -145,7 +145,7 @@ class App {
 
                set_include_path("include/$this->hostname" . PATH_SEPARATOR . 'include' . PATH_SEPARATOR . '.' );
 
-               if((x($_SERVER,'QUERY_STRING')) && substr($_SERVER['QUERY_STRING'],0,2) == "q=")
+               if((x($_SERVER,'QUERY_STRING')) && substr($_SERVER['QUERY_STRING'],0,2) === "q=")
                        $_SERVER['QUERY_STRING'] = substr($_SERVER['QUERY_STRING'],2);
                if(x($_GET,'q'))
                        $this->cmd = trim($_GET['q'],'/');
index ced7573f3bd41d7b1f41f0a40fb838a899f9cad0..ffea60c49f7193bce7985c7cc716417124ea8393 100644 (file)
@@ -351,6 +351,7 @@ CREATE TABLE IF NOT EXISTS `user` (
   `password` char(255) NOT NULL,
   `nickname` char(255) NOT NULL,
   `email` char(255) NOT NULL,
+  `openid` char(255) NOT NULL,
   `timezone` char(128) NOT NULL,
   `default-location` char(255) NOT NULL,
   `allow_location` tinyint(1) NOT NULL DEFAULT '0',
index 3d19d003b1939fbbdbb8613f7a8723dd070d94d3..a34a1e01fd398be2700f9467201578b1b3af438f 100644 (file)
@@ -83,7 +83,7 @@
 
                $importer = $r[0];
 
-               logger("poller: IMPORTER: {$importer['name']}");
+               logger("poller: poll: IMPORTER: {$importer['name']}, CONTACT: {$contact['name']}");
 
                $last_update = (($contact['last-update'] === '0000-00-00 00:00:00') 
                        ? datetime_convert('UTC','UTC','now - 30 days', ATOM_TIME)
        
                        $xml = fetch_url($url);
 
-                       logger('poller: handshake with url ' . $url . ' returns xml: ' . $xml);
+                       logger('poller: handshake with url ' . $url . ' returns xml: ' . $xml, LOGGER_DATA);
 
                        if(! $xml) {
                                logger("poller: $url appears to be dead - marking for death ");
index eb3231b5693c04c31ba8a3d1f01805b141b53dc7..7ee27213d810e69c31961b6f6bf927b0077c6cc0 100644 (file)
@@ -133,4 +133,9 @@ function update_1014() {
 
 function update_1015() {
        q("ALTER TABLE `item` CHANGE `body` `body` mediumtext NOT NULL");
-}
\ No newline at end of file
+}
+
+function update_1016() {
+       q("ALTER TABLE `user` ADD `openid` CHAR( 255 ) NOT NULL AFTER `email` ");
+}
+