diff options
-rw-r--r-- | config-dist.php | 2 | ||||
-rw-r--r-- | functions.php | 2 | ||||
-rw-r--r-- | index.php | 3 | ||||
-rw-r--r-- | loginform.inc.php | 2 | ||||
-rw-r--r-- | microblog.css | 2 | ||||
-rw-r--r-- | postform.inc.php | 2 | ||||
-rw-r--r-- | single.inc.php | 1 | ||||
-rw-r--r-- | timeline.inc.php | 2 | ||||
-rw-r--r-- | twitter_api.php | 2 |
9 files changed, 7 insertions, 11 deletions
diff --git a/config-dist.php b/config-dist.php index 41c6430..6ad8df6 100644 --- a/config-dist.php +++ b/config-dist.php @@ -50,4 +50,4 @@ try { } // load functions -require_once(ROOT.DS.'functions.php');
\ No newline at end of file +require_once(ROOT.DS.'functions.php'); diff --git a/functions.php b/functions.php index 19325d1..9ff4de1 100644 --- a/functions.php +++ b/functions.php @@ -138,4 +138,4 @@ function twitter_post_status($status='') { $twitter = new TwitterAPIExchange($config['twitter']); return $twitter->buildOauth($url, 'POST')->setPostfields($postfields)->performRequest(); -}
\ No newline at end of file +} @@ -1,7 +1,6 @@ <?php require_once(__DIR__.DIRECTORY_SEPARATOR.'config.php'); - if(is_numeric(path(0))) { // show a single blog post require_once(ROOT.DS.'single.inc.php'); @@ -26,5 +25,3 @@ // show the homepage require_once(ROOT.DS.'timeline.inc.php'); } - -?>
\ No newline at end of file diff --git a/loginform.inc.php b/loginform.inc.php index 8a6cad8..6964be8 100644 --- a/loginform.inc.php +++ b/loginform.inc.php @@ -45,4 +45,4 @@ </form> </div> </body> -</html>
\ No newline at end of file +</html> diff --git a/microblog.css b/microblog.css index 0f46fdf..8f5df2c 100644 --- a/microblog.css +++ b/microblog.css @@ -164,4 +164,4 @@ nav li + li a { .login input[type="password"]:focus { border-color: #007aff; outline: none; -}
\ No newline at end of file +} diff --git a/postform.inc.php b/postform.inc.php index 417718c..cfa3483 100644 --- a/postform.inc.php +++ b/postform.inc.php @@ -80,4 +80,4 @@ }); </script> </body> -</html>
\ No newline at end of file +</html> diff --git a/single.inc.php b/single.inc.php index 17e282e..7ef7251 100644 --- a/single.inc.php +++ b/single.inc.php @@ -33,4 +33,3 @@ </div> </body> </html> - diff --git a/timeline.inc.php b/timeline.inc.php index 5932aa7..c4f9d20 100644 --- a/timeline.inc.php +++ b/timeline.inc.php @@ -55,4 +55,4 @@ </div> </div> </body> -</html>
\ No newline at end of file +</html> diff --git a/twitter_api.php b/twitter_api.php index ea60a4c..d6e3a58 100644 --- a/twitter_api.php +++ b/twitter_api.php @@ -407,4 +407,4 @@ class TwitterAPIExchange { return $this->httpStatusCode; } -}
\ No newline at end of file +} |