Skip to content

Commit

Permalink
Normalized all "OR die" to use lowercase "or"
Browse files Browse the repository at this point in the history
  • Loading branch information
Woody Gilk committed Apr 11, 2010
1 parent c6fb2bb commit 5a327ad
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion classes/kohana/arr.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* Array helper.
*
Expand Down
2 changes: 1 addition & 1 deletion classes/kohana/encrypt.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* The Encrypt library provides two-way encryption of text and binary strings
* using the [Mcrypt](http://php.net/mcrypt) extension, which consists of three
Expand Down
2 changes: 1 addition & 1 deletion classes/kohana/feed.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* RSS and Atom feed helper.
*
Expand Down
2 changes: 1 addition & 1 deletion classes/kohana/file.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* File helper class.
*
Expand Down
2 changes: 1 addition & 1 deletion classes/kohana/form.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* Form helper class. Unless otherwise noted, all generated HTML will be made
* safe using the [HTML::chars] method. This prevents against simple XSS
Expand Down
2 changes: 1 addition & 1 deletion classes/kohana/html.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* HTML helper class. Provides generic methods for generating various HTML
* tags and making output HTML safe.
Expand Down
2 changes: 1 addition & 1 deletion classes/kohana/inflector.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* Inflector helper class. Inflection is changing the form of a word based on
* the context it is used in. For example, changing a word into a plural form.
Expand Down
2 changes: 1 addition & 1 deletion classes/kohana/security.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* Security helper class.
*
Expand Down
2 changes: 1 addition & 1 deletion classes/kohana/text.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* Text helper class. Provides simple methods for working with text.
*
Expand Down
2 changes: 1 addition & 1 deletion classes/kohana/upload.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* Upload helper class for working with uploaded files and [Validate].
*
Expand Down
2 changes: 1 addition & 1 deletion classes/kohana/url.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* URL helper class.
*
Expand Down
2 changes: 1 addition & 1 deletion config/credit_cards.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* Credit card validation configuration.
*
Expand Down
2 changes: 1 addition & 1 deletion config/inflector.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
<?php defined('SYSPATH') or die('No direct access allowed.');

return array(

Expand Down
2 changes: 1 addition & 1 deletion config/mimes.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* A list of mime types. Our list is generally more complete and accurate than
* the operating system MIME list.
Expand Down
2 changes: 1 addition & 1 deletion config/user_agents.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
<?php defined('SYSPATH') or die('No direct access allowed.');

return array(

Expand Down

0 comments on commit 5a327ad

Please sign in to comment.