Jacek Kowalski
2014-06-11 1128f2ee2379a8473a36631c51b7c2dfb39c0651
[mod_pogoda] Poprawienie dwóch różnych wywołań metody na nieistniejącym obiekcie w handlerze
1 files modified
6 ■■■■■ changed files
modules/30_pogoda/handler.php 6 ●●●●● patch | view | raw | blame | history
modules/30_pogoda/handler.php
@@ -139,8 +139,10 @@
            $arg = trim($msg->args);
        }
        
        $out = new BotMsg();
        if(empty($arg)) {
            if(isset($this->session->miasto)) {
            if(isset($msg->session->miasto)) {
                return new BotMsg('Aktualnie ustawione miejsce to: '.htmlspecialchars($this->session->miasto).', '.htmlspecialchars($this->session->countryName));
            }
            
@@ -161,7 +163,7 @@
        }
        else
        {
            $out = new BotMsg();
        }
        
        $api = new api_geonames();