diff --git a/index.php b/index.php
index 5c96bc01..b174a6e0 100644
--- a/index.php
+++ b/index.php
@@ -42,6 +42,9 @@
if (property_exists($user, 'url')) {
$holder = '' . $holder . '';
}
+ if (property_exists($user, 'email')) {
+ $holder = $holder . ' <' . $user->email . '>';
+ }
if (property_exists($user, 'format')) {
if (strtolower($user->format) == 'txt') {
@@ -111,6 +114,4 @@
header('content-type: text/plain');
}
-echo $license;
-
-?>
+echo $license;
\ No newline at end of file
diff --git a/users/batu.json b/users/batu.json
index 8551ad4c..3b2307ca 100644
--- a/users/batu.json
+++ b/users/batu.json
@@ -1,4 +1,5 @@
{
"copyright": "Batuhan Icoz, http://batu.me/1",
- "url": "http://batu.me/1"
+ "url": "http://batu.me/1",
+ "email": "i@batu.me"
}
\ No newline at end of file