Skip to content
This repository was archived by the owner on Apr 9, 2023. It is now read-only.

Commit 3f8741a

Browse files
committed
Name update
1 parent 66ffd9a commit 3f8741a

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

source/libraries/analyser.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22
/*
33
#-----------------------------------------
4-
| web analytics: analyser
5-
| https://beranek1.github.io/webanalytics/
4+
| WebAnalytics: Analyser
5+
| https://webanalytics.one
66
#-----------------------------------------
77
| made by beranek1
88
| https://github.com/beranek1

webanalytics.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22
/*
33
#-----------------------------------------
4-
| web analytics
5-
| https://beranek1.github.io/webanalytics/
4+
| WebAnalytics
5+
| https://webanalytics.one
66
#-----------------------------------------
77
| made by beranek1
88
| https://github.com/beranek1
@@ -25,7 +25,7 @@
2525
// Connect to database
2626
$web_analytics_db->connect();
2727

28-
// Runs analytics
28+
// Runs WebAnalytics
2929
$web_analytics = new web_analytics($web_analytics_db, $_SERVER, $_COOKIE);
3030

3131
// Closes database connection
@@ -34,7 +34,7 @@
3434

3535
/* Classes */
3636

37-
// web analytics database manager
37+
// WebAnalytics database manager
3838
class web_db_manager {
3939
public $connected = false;
4040
private $connection = null;
@@ -147,7 +147,7 @@ function __construct($user = "root", $password = "", $database = "", $host = "lo
147147
}
148148
}
149149

150-
// web analytics
150+
// WebAnalytics
151151

152152
class web_analytics {
153153
private $db_manager = null;
@@ -709,7 +709,7 @@ function __construct($db_manager, $server, $clientcookies, $anonymousips = TRUE)
709709
$this->indentify_browser();
710710
$this->save_request();
711711
} else {
712-
error_log("web analytics unable to connect to database\n");
712+
error_log("WebAnalytics unable to connect to database\n");
713713
}
714714
}
715715

websettings.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22
/*
33
#-----------------------------------------
4-
| web analytics settings
5-
| https://beranek1.github.io/webanalytics/
4+
| WebAnalytics: Settings
5+
| https://webanalytics.one
66
#-----------------------------------------
77
| made by beranek1
88
| https://github.com/beranek1

webstatistics.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22
/*
33
#-----------------------------------------
4-
| web analytics: statistics viewer
5-
| https://beranek1.github.io/webanalytics/
4+
| WebAnalytics: Statistics
5+
| https://webanalytics.one
66
#-----------------------------------------
77
| made by beranek1
88
| https://github.com/beranek1
@@ -28,7 +28,7 @@
2828
$total_requests = $ttlrqtsr[0];
2929
if($total_requests == 0) {
3030
echo "Not enough data collected yet.<br>";
31-
echo "<a href=\"https://beranek1.github.io/webanalytics/\">web analytics</a>";
31+
echo "<a href=\"https://webanalytics.one\">WebAnalytics</a>";
3232
$web_analytics_db->close();
3333
return;
3434
}
@@ -97,7 +97,7 @@
9797
<html>
9898
<head>
9999
<meta name="robots" content="noindex,nofollow">
100-
<title>web analytics</title>
100+
<title>WebAnalytics: Statistics</title>
101101
<style>
102102
body {
103103
font-family: arial, sans-serif;
@@ -227,15 +227,15 @@
227227
</div>
228228
</body>
229229
<footer>
230-
<a href="https://beranek1.github.io/webanalytics/">Powered by web analytics</a>
230+
<a href="https://webanalytics.one">Powered by WebAnalytics</a>
231231
</footer>
232232
</html>
233233
<?php
234234
$web_analytics_db->close();
235235

236236
/* Classes */
237237

238-
// web database manager
238+
// WebAnalytics database manager
239239
class web_db_manager {
240240
public $connected = false;
241241
private $connection = null;

0 commit comments

Comments
 (0)