2012-06-03 20:19:28 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Name: Calendar with CalDAV Support
|
|
|
|
* Description: A web-based calendar system with CalDAV-support. Also brings your Friendica-Contacts to your CardDAV-capable mobile phone. Requires PHP >= 5.3.
|
2012-08-12 11:31:34 +02:00
|
|
|
* Version: 0.3.0
|
2012-06-03 20:19:28 +02:00
|
|
|
* Author: Tobias Hößl <https://github.com/CatoTH/>
|
|
|
|
*/
|
|
|
|
|
|
|
|
$_v = explode(".", phpversion());
|
|
|
|
if ($_v[0] > 5 || ($_v[0] == 5 && $_v[1] >= 3)) {
|
2012-08-04 10:46:11 +02:00
|
|
|
require(__DIR__ . "/friendica/main.php");
|
2012-06-03 20:19:28 +02:00
|
|
|
}
|