]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Some more notice errors - I guess I'm the only one developing with E_ALL
authorMike Cochrane <mikec@mikenz.geek.nz>
Sun, 20 Jul 2008 03:32:36 +0000 (23:32 -0400)
committerMike Cochrane <mikec@mikenz.geek.nz>
Sun, 20 Jul 2008 03:32:36 +0000 (23:32 -0400)
darcs-hash:20080720033236-533db-95f6a169f73e69549a8ff0eefb0e4c8ba21f090e.gz

actions/noticesearch.php
lib/util.php

index 29de0ad7cae17f3c0588f642d3f254981dee9beb..eb3382779975659b50c65c2585f1bd65cdabae59 100644 (file)
@@ -20,7 +20,7 @@
 if (!defined('LACONICA')) { exit(1); }
 
 require_once(INSTALLDIR.'/lib/searchaction.php');
-define(NOTICES_PER_PAGE, 20);
+define('NOTICES_PER_PAGE', 20);
 
 # XXX common parent for people and content search?
 
index f2038808b3fbbdcc966c9dacd8576505ff2fc1bd..74d5971f7ddd908185de4e664a617bb2686e1b2d 100644 (file)
@@ -708,7 +708,7 @@ function common_local_url($action, $args=NULL) {
 function common_fancy_url($action, $args=NULL) {
        switch (strtolower($action)) {
         case 'public':
-               if ($args && $args['page']) {
+               if ($args && isset($args['page'])) {
                        return common_path('?page=' . $args['page']);
                } else {
                        return common_path('');
@@ -889,6 +889,7 @@ function common_redirect($url, $code=307) {
 
 function common_save_replies($notice) {
        # Alternative reply format
+       $tname = false;
        if (preg_match('/^T ([A-Z0-9]{1,64}) /', $notice->content, $match)) {
                $tname = $match[1];
        }