Skip to content

Commit

Permalink
Merge pull request #3 from Tony931023/patch-1
Browse files Browse the repository at this point in the history
Fix auzwow
  • Loading branch information
Nightprince authored Mar 1, 2024
2 parents 169d7fa + 8df33cb commit 56b9813
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 4 deletions.
8 changes: 7 additions & 1 deletion auzwow/config/base.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
<?php defined('BASEPATH') OR exit('No direct script access allowed');
<?php

# Import required classes
use MX\CI;

# Make sure we're in CI
defined('BASEPATH') OR exit('No direct script access allowed');

# Define: Directory separator shortcut
if(!defined('DS'))
Expand Down
7 changes: 6 additions & 1 deletion auzwow/config/config.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
<?php defined('BASEPATH') OR exit('No direct script access allowed');
<?php

# Import required classes
use MX\CI;

# Make sure we're in CI
defined('BASEPATH') OR exit('No direct script access allowed');
# Config array
$config = [
/**
Expand Down
8 changes: 7 additions & 1 deletion auzwow/config/template_assets.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
<?php defined('BASEPATH') OR exit('No direct script access allowed');
<?php

# Import required classes
use MX\CI;

# Make sure we're in CI
defined('BASEPATH') OR exit('No direct script access allowed');

# Assets
$assets = [
Expand Down
8 changes: 7 additions & 1 deletion auzwow/config/template_vars.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
<?php defined('BASEPATH') OR exit('No direct script access allowed');
<?php

# Import required classes
use MX\CI;

# Make sure we're in CI
defined('BASEPATH') OR exit('No direct script access allowed');

# Load theme assets
require(T_ROOT_PATH . 'config' . DS . 'template_assets' . PHP);
Expand Down

0 comments on commit 56b9813

Please sign in to comment.