forked from e107inc/guestbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
e_latest.php
39 lines (34 loc) · 1.42 KB
/
e_latest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
/*
+---------------------------------------------------------------+
|
| e107 website system
| GUESTBOOK PLUGIN V4.0
|
| Released under the terms and conditions of the
| GNU General Public License Version 2 (http://gnu.org).
|
+---------------------------------------------------------------+
| original: ©Andrew Rockwell 2003
| http://2sdw.com
+---------------------------------------------------------------+
| updates: ©Richard Perry 2005
| http://www.greycube.com
+---------------------------------------------------------------+
| updates: ©Titanik 2007
| http://upc.utc.sk
+---------------------------------------------------------------+
| updates: ©Smarti October 2007
| http://www.platinwebservice.de
+---------------------------------------------------------------+
*/
if (!defined('e107_INIT')) { exit; }
@include_once(e_PLUGIN."guestbook/languages/".e_LANGUAGE.".php");
@include_once(e_PLUGIN."guestbook/languages/English.php");
$guestbook_newentries = $sql->db_Count("guestbook WHERE block='0'");
$text .= "<div style='padding-bottom: 2px;'><img src='".e_PLUGIN."/guestbook/icon_small.png' style='width: 16px; height: 16px; vertical-align: bottom' alt='' /> ".GB_LAN_ADM_21.": ".$guestbook_newentries."</div>";
?>