Skip to content

Commit

Permalink
fixing define calls by adding second parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
philfreo authored and xdecock committed Mar 22, 2011
1 parent 9122f98 commit 9b458d2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/swift_init.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
if (defined('SWIFT_INIT_LOADED'))
return;

define('SWIFT_INIT_LOADED');
define('SWIFT_INIT_LOADED', true);

//Load in dependency maps
require dirname(__FILE__) . '/dependency_maps/cache_deps.php';
Expand Down
2 changes: 1 addition & 1 deletion lib/swift_required.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
if (defined('SWIFT_REQUIRED_LOADED'))
return;

define('SWIFT_REQUIRED_LOADED');
define('SWIFT_REQUIRED_LOADED', true);

//Load Swift utility class
require dirname(__FILE__) . '/classes/Swift.php';
Expand Down
2 changes: 1 addition & 1 deletion lib/swift_required_pear.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
if (defined('SWIFT_REQUIRED_LOADED'))
return;

define('SWIFT_REQUIRED_LOADED');
define('SWIFT_REQUIRED_LOADED', true);

//Load Swift utility class
require dirname(__FILE__) . '/Swift.php';
Expand Down

0 comments on commit 9b458d2

Please sign in to comment.