]> git.lyx.org Git - lyx.git/blobdiff - src/support/userinfo.cpp
fix warning on possibly(?) unused precompiled headers due to different -fPic settings...
[lyx.git] / src / support / userinfo.cpp
index 3a8d43e556057316e13292e616bd73cd1dee4223..c68d55ac3e02b27d001b1496259142bba74ff605 100644 (file)
@@ -57,6 +57,11 @@ docstring const user_name()
 
 docstring const user_email()
 {
+       //FIXME: quick fix wrt bug #3764; only Anonymous is detected now.
+       //The code after should be used only after user approval.
+       return docstring();
+
+       
        string email = getEnv("EMAIL_ADDRESS");
        if (email.empty())
                email = getEnv("EMAIL");