First commit
This commit is contained in:
20
api/addons/channel.htm
Normal file
20
api/addons/channel.htm
Normal file
@@ -0,0 +1,20 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="renderer" content="webkit" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<script type="text/javascript">
|
||||
var querystring = location.search.substr(1);
|
||||
if(querystring.indexOf('/') != -1) {
|
||||
var e = querystring.split('/');
|
||||
var url = '../../admin.php?frames=yes&action=cloudaddons&operation=download&addonids=' + e[0] + '&md5hash=' + e[1] + '×tamp=' + e[2];
|
||||
try {
|
||||
top.location.href = url;
|
||||
} catch(e) {}
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
0
api/addons/index.htm
Normal file
0
api/addons/index.htm
Normal file
9
api/addons/zendcheck.php
Normal file
9
api/addons/zendcheck.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
if(phpversion() >= '5.3') {
|
||||
include 'zendcheck53.php';
|
||||
} else {
|
||||
include 'zendcheck52.php';
|
||||
}
|
||||
|
||||
?>
|
3
api/addons/zendcheck52.php
Normal file
3
api/addons/zendcheck52.php
Normal file
@@ -0,0 +1,3 @@
|
||||
<?php @Zend;
|
||||
4123;
|
||||
/*
|
3
api/addons/zendcheck53.php
Normal file
3
api/addons/zendcheck53.php
Normal file
@@ -0,0 +1,3 @@
|
||||
<?php @Zend;
|
||||
3074;
|
||||
/*
|
Reference in New Issue
Block a user