+++ /dev/null
-#Kyberia README
-
-##Kyberia
- * This repository contains sources of Kyberia.sk website.
- * See http://kyberia.sk/ and http://kyberia.cz/ for more.
-
-##COPYING
- * everything in this repository
- * is protected by copyright of it's respective author(s)
- * is licensed as specified in COPYING file in root of this repository
- * can be licensed somehow else if other licence was specified by author
+++ /dev/null
-<?php
-require('config/config.inc');
-require('inc/database.inc');
-
-$db = new CLASS_DATABASE();
-$amount = $_GET['price'];
-preg_match("/kyberia ([0-9]*)/",$_GET['text'],$matched);
-$user_id=$matched[1];
-
-$db->query("insert into sms_payment set user_id='$user_id',amount='$amount'");
-
-?>