]> git.mxchange.org Git - friendica.git/commitdiff
Merge pull request #1221 from annando/1411-default-value-type
authorfabrixxm <fabrix.xm@gmail.com>
Mon, 10 Nov 2014 08:57:42 +0000 (09:57 +0100)
committerfabrixxm <fabrix.xm@gmail.com>
Mon, 10 Nov 2014 08:57:42 +0000 (09:57 +0100)
Fix: "not null" fields were not set

1  2 
boot.php

diff --combined boot.php
index 7a6f4bd4e1e0a9cd32d36c71393bbb050f9dfb63,60863ff7d83d3a06c125bc29928246b8f6e19062..44d72bb3cb297872f5f75234c20a8624664beb0f
+++ b/boot.php
@@@ -18,7 -18,7 +18,7 @@@ define ( 'FRIENDICA_PLATFORM',     'Fri
  define ( 'FRIENDICA_CODENAME',        'Ginger');
  define ( 'FRIENDICA_VERSION',      '3.3.1' );
  define ( 'DFRN_PROTOCOL_VERSION',  '2.23'    );
- define ( 'DB_UPDATE_VERSION',      1174      );
+ define ( 'DB_UPDATE_VERSION',      1175      );
  define ( 'EOL',                    "<br />\r\n"     );
  define ( 'ATOM_TIME',              'Y-m-d\TH:i:s\Z' );
  
@@@ -522,28 -522,28 +522,28 @@@ if(! class_exists('App')) 
                                if (substr($this->query_string, 0, 1) == "/")
                                        $this->query_string = substr($this->query_string, 1);
                        }
 -                        
 +
                        if (x($_GET,'pagename'))
                                $this->cmd = trim($_GET['pagename'],'/\\');
                        elseif (x($_GET,'q'))
                                $this->cmd = trim($_GET['q'],'/\\');
 -                            
 -                        
 +
 +
                          // fix query_string
                          $this->query_string = str_replace($this->cmd."&",$this->cmd."?", $this->query_string);
 -                        
 -                        
 +
 +
                        // unix style "homedir"
 -                        
 +
                        if(substr($this->cmd,0,1) === '~')
                                $this->cmd = 'profile/' . substr($this->cmd,1);
 -                        
 +
                        // Diaspora style profile url
  
                        if(substr($this->cmd,0,2) === 'u/')
                                $this->cmd = 'profile/' . substr($this->cmd,2);
  
 -                                
 +
                        /**
                         *
                         * Break the URL path into C style argc/argv style arguments for our
                                }
                        }
  
 +                      if (get_config('config','hostname') != "")
 +                              $this->hostname = get_config('config','hostname');
 +
                        $this->baseurl = $scheme . "://" . $this->hostname . ((isset($this->path) && strlen($this->path)) ? '/' . $this->path : '' );
                        return $this->baseurl;
                }
                                if (file_exists(".htpreconfig.php"))
                                        @include(".htpreconfig.php");
  
 -                              $this->hostname = $hostname;
 +                              if (get_config('config','hostname') != "")
 +                                      $this->hostname = get_config('config','hostname');
 +
 +                              if (!isset($this->hostname) OR ($this->hostname == ""))
 +                                      $this->hostname = $hostname;
                        }
  
                }
  
                function get_hostname() {
 +                      if (get_config('config','hostname') != "")
 +                              $this->hostname = get_config('config','hostname');
 +
                        return $this->hostname;
                }