summaryrefslogtreecommitdiff
path: root/modules/popup-dialog.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-11-08 16:34:49 +0300
committerAndrew Dolgov <[email protected]>2010-11-08 16:34:49 +0300
commit73fe13afd47d4e8d31ffd5f09fc602415e5f1207 (patch)
tree64af5a434bd6c5505c82ebe714d4026548d0e899 /modules/popup-dialog.php
parented28d0fd454d5f2c15f492bfa02d3fe9a0e79e0c (diff)
add ttrss_users.full_name; bump schema
Diffstat (limited to 'modules/popup-dialog.php')
-rw-r--r--modules/popup-dialog.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/popup-dialog.php b/modules/popup-dialog.php
index 61efd4c99..4c8c92b54 100644
--- a/modules/popup-dialog.php
+++ b/modules/popup-dialog.php
@@ -654,11 +654,13 @@
print "<input type=\"hidden\" name=\"op\" value=\"rpc\">";
print "<input type=\"hidden\" name=\"subop\" value=\"sendEmail\">";
- $result = db_query($link, "SELECT email FROM ttrss_users WHERE
+ $result = db_query($link, "SELECT email, full_name FROM ttrss_users WHERE
id = " . $_SESSION["uid"]);
$user_email = htmlspecialchars(db_fetch_result($result, 0, "email"));
- $user_name = htmlspecialchars($_SESSION["name"]);
+ $user_name = htmlspecialchars(db_fetch_result($result, 0, "full_name"));
+
+ if (!$user_name) $user_name = $_SESSION['name'];
$_SESSION['email_replyto'] = $user_email;
$_SESSION['email_fromname'] = $user_name;