Skip to content

Commit

Permalink
Fixed BC issue with PHP 5.2 and __DIR__.
Browse files Browse the repository at this point in the history
  • Loading branch information
morrisonlevi committed Jul 11, 2012
1 parent dfbc651 commit 40755d0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Gateway/NewsFileSystemGateway.php
@@ -1,7 +1,7 @@
<?php

require_once 'Entity/NewsItem.php';
require_once 'NewsGateway.php';
require_once dirname(__FILE__) . '/../Entity/NewsItem.php';
require_once dirname(__FILE__) . '/NewsGateway.php';

class NewsFileSystemGateway implements NewsGateway {

Expand Down
10 changes: 5 additions & 5 deletions index-beta.php
Expand Up @@ -43,11 +43,11 @@
}

$_SERVER['BASE_PAGE'] = 'index.php';
include_once '/include/prepend.inc';
include_once '/include/pregen-events.inc';
include_once '/include/pregen-confs.inc';
include_once '/include/pregen-news.inc';
include_once '/include/version.inc';
include_once 'include/prepend.inc';
include_once 'include/pregen-events.inc';
include_once 'include/pregen-confs.inc';
include_once 'include/pregen-news.inc';
include_once 'include/version.inc';

// Prepare announcements.
if (is_array($CONF_TEASER) && $CONF_TEASER) {
Expand Down

0 comments on commit 40755d0

Please sign in to comment.