not showing the IP in the guestbook
-
Col. Kurtz
- Regular
- Posts: 450
- Joined: Thu May 26, 2005 10:43 am
- Location: Bonn, Germany
- Contact:
not showing the IP in the guestbook
how to disable the feature that shows the IP adress in the guestbook?
Marc
I hope:
open serendipity_event_guestbook.php
look for
----------------
echo "<small class='commentmetadata'>";
echo htmlspecialchars(serendipity_strftime($this->get_config('dateformat'), $row['stamp']));
echo ', IP: '.htmlspecialchars($row['ip']);
echo "</small>\n <p>";
----------------
change to
----------------
echo "<small class='commentmetadata'>";
echo htmlspecialchars(serendipity_strftime($this->get_config('dateformat'), $row['stamp']));
//echo ', IP: '.htmlspecialchars($row['ip']);
echo "</small>\n <p>";
----------------
good luck
open serendipity_event_guestbook.php
look for
----------------
echo "<small class='commentmetadata'>";
echo htmlspecialchars(serendipity_strftime($this->get_config('dateformat'), $row['stamp']));
echo ', IP: '.htmlspecialchars($row['ip']);
echo "</small>\n <p>";
----------------
change to
----------------
echo "<small class='commentmetadata'>";
echo htmlspecialchars(serendipity_strftime($this->get_config('dateformat'), $row['stamp']));
//echo ', IP: '.htmlspecialchars($row['ip']);
echo "</small>\n <p>";
----------------
good luck
-
Col. Kurtz
- Regular
- Posts: 450
- Joined: Thu May 26, 2005 10:43 am
- Location: Bonn, Germany
- Contact:
-
Harald Weingaertner
- Regular
- Posts: 474
- Joined: Mon Mar 27, 2006 12:32 am
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Hi!
Yes, if you change that code to
HTH,
Garvin
Yes, if you change that code to
Code: Select all
echo "<small class='commentmetadata'>";
echo htmlspecialchars(serendipity_strftime($this->get_config('dateformat'), $row['stamp']));
if (serendipity_userLoggedIn()) {
echo ', IP: '.htmlspecialchars($row['ip']);
}
echo "</small>\n <p>";
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
-
Harald Weingaertner
- Regular
- Posts: 474
- Joined: Mon Mar 27, 2006 12:32 am