Skip to content
This repository has been archived by the owner on Nov 26, 2017. It is now read-only.

Commit

Permalink
Fixing JRegistry test, JLoader
Browse files Browse the repository at this point in the history
  • Loading branch information
ian_maclennan committed Feb 24, 2011
1 parent 57eaf6a commit ab5105c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/loader.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public static function import($key, $base = null)

// If the file exists attempt to include it.
if (is_file($base.DS.$path.'.php')) {
$success = include $base.DS.$path.'.php';
$success = (bool) include $base.DS.$path.'.php';
}
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?php

require_once JPATH_PLATFORM.'/joomla/registry/format.php';
require_once JPATH_PLATFORM.'/joomla/registry/format/php.php';

/**
Expand Down

0 comments on commit ab5105c

Please sign in to comment.