]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Revert "Revert "if user allows location sharing but turned off browser location use...
authorEvan Prodromou <evan@status.net>
Thu, 1 Apr 2010 16:58:06 +0000 (12:58 -0400)
committerEvan Prodromou <evan@status.net>
Thu, 1 Apr 2010 16:58:06 +0000 (12:58 -0400)
This reverts commit 8b24ad8a9c681585e95612084eb629df8b364b74.

actions/newnotice.php

index ed0fa1b2b5768026e486196d0112a2c46af3f54e..748d104ff9391de95bd017d1014dc2eb311a5e23 100644 (file)
@@ -184,13 +184,21 @@ class NewnoticeAction extends Action
 
         $options = array('reply_to' => ($replyto == 'false') ? null : $replyto);
 
-        if ($user->shareLocation() && $this->arg('notice_data-geo')) {
-
-            $locOptions = Notice::locationOptions($this->trimmed('lat'),
-                                                  $this->trimmed('lon'),
-                                                  $this->trimmed('location_id'),
-                                                  $this->trimmed('location_ns'),
-                                                  $user->getProfile());
+        if ($user->shareLocation()) {
+            // use browser data if checked; otherwise profile data
+            if ($this->arg('notice_data-geo')) {
+                $locOptions = Notice::locationOptions($this->trimmed('lat'),
+                                                      $this->trimmed('lon'),
+                                                      $this->trimmed('location_id'),
+                                                      $this->trimmed('location_ns'),
+                                                      $user->getProfile());
+            } else {
+                $locOptions = Notice::locationOptions(null,
+                                                      null,
+                                                      null,
+                                                      null,
+                                                      $user->getProfile());
+            }
 
             $options = array_merge($options, $locOptions);
         }
@@ -201,8 +209,6 @@ class NewnoticeAction extends Action
             $upload->attachToNotice($notice);
         }
 
-
-
         if ($this->boolean('ajax')) {
             header('Content-Type: text/xml;charset=utf-8');
             $this->xw->startDocument('1.0', 'UTF-8');