Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Tenzing
/
Tz Tools
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
bc190ca2
authored
2009-11-11 20:30:57 +0000
by
Chris Boden
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Fixed php version comparison bug in 0.1
1 parent
988ae995
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
tz-tools.php
tz-tools.php
View file @
bc190ca
...
...
@@ -6,7 +6,7 @@ Description: Various classes to help out with stuff
Author: Tenzing
*/
if
(
phpversion
()
<
'5.2.2'
)
{
if
(
version_compare
(
PHP_VERSION
,
'5.2.2'
)
!==
1
)
{
die
(
'PHP version 5.2.2 or greater is required'
);
}
...
...
Please
register
or
sign in
to post a comment