]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Minor PHP stylistic features and typing stuff
authorMikael Nordfeldth <mmn@hethane.se>
Sat, 2 Nov 2013 12:05:08 +0000 (13:05 +0100)
committerMikael Nordfeldth <mmn@hethane.se>
Sat, 2 Nov 2013 12:05:08 +0000 (13:05 +0100)
classes/Profile_prefs.php
lib/htmloutputter.php

index 97df488b6a342dafcf8a01a3bd79150ebb05f68f..37ccf4fb9677263aceca5e31f6071282eb4f6680 100644 (file)
@@ -120,7 +120,7 @@ class Profile_prefs extends Managed_DataObject
     static function getConfigData(Profile $profile, $namespace, $topic) {
         try {
             $data = self::getData($profile, $namespace, $topic);
-        } catch (Exception $e) {
+        } catch (NoResultException $e) {
             $data = common_config($namespace, $topic);
         }
         return $data;
@@ -160,7 +160,7 @@ class Profile_prefs extends Managed_DataObject
         $pref->topic      = $topic;
         $pref->data       = $data;
         
-        if (!$pref->insert()) {
+        if ($pref->insert() === false) {
             throw new ServerException('Could not save profile preference.');
         }
         return true;
index 9ec7850402be85c99ea9d15d18fa377278bf63c0..369cd5936e6a5aa9a284ec9ff4bc751758733658 100644 (file)
@@ -302,7 +302,7 @@ class HTMLOutputter extends XMLOutputter
 
     function hidden($id, $value, $name=null)
     {
-        $this->element('input', array('name' => ($name) ? $name : $id,
+        $this->element('input', array('name' => $name ?: $id,
                                       'type' => 'hidden',
                                       'id' => $id,
                                       'value' => $value));
@@ -351,7 +351,7 @@ class HTMLOutputter extends XMLOutputter
     {
         $this->element('input', array('type' => 'submit',
                                       'id' => $id,
-                                      'name' => ($name) ? $name : $id,
+                                      'name'  => $name ?: $id,
                                       'class' => $cls,
                                       'value' => $label,
                                       'title' => $title));