Changeset - ebf3f8f12182
[Not reviewed]
default
0 1 0
Nathan Brink (binki) - 15 years ago 2011-01-31 18:56:49
ohnobinki@ohnopublishing.net
Fix require_once() calls to use new inc/ path for includes since 30c9462fd881.
1 file changed with 2 insertions and 3 deletions:
0 comments (0 inline, 0 general)
inc/class.semester.inc
Show inline comments
 
@@ -18,10 +18,9 @@
 
 * along with slate_permutate.  If not, see <http://www.gnu.org/licenses/>.
 
 */
 

	
 
$root_dir = dirname(__FILE__) . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR;
 
$inc_dir = $root_dir . 'inc' . DIRECTORY_SEPARATOR;
 
$inc_dir = dirname(__FILE__) . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'inc' . DIRECTORY_SEPARATOR;
 
require_once($inc_dir . 'class.course.inc');
 
require_once($root_dir . 'class.section.php');
 
require_once($inc_dir . 'class.section.php');
 

	
 
/**
 
 * \brief
0 comments (0 inline, 0 general)