Title: [199491] trunk/Websites/webkit.org
Revision
199491
Author
[email protected]
Date
2016-04-13 08:42:24 -0700 (Wed, 13 Apr 2016)

Log Message

Remove database quote escapes.

Reviewed by Timothy Hatcher.

* wp-content/plugins/tweet-listener.php:

Modified Paths

Diff

Modified: trunk/Websites/webkit.org/ChangeLog (199490 => 199491)


--- trunk/Websites/webkit.org/ChangeLog	2016-04-13 15:28:52 UTC (rev 199490)
+++ trunk/Websites/webkit.org/ChangeLog	2016-04-13 15:42:24 UTC (rev 199491)
@@ -1,5 +1,13 @@
 2016-04-13  Jon Davis  <[email protected]>
 
+        Remove database quote escapes.
+
+        Reviewed by Timothy Hatcher.
+
+        * wp-content/plugins/tweet-listener.php:
+
+2016-04-13  Jon Davis  <[email protected]>
+
         Added background color for Safari Technology Preview posts.
 
         Reviewed by Timothy Hatcher.

Modified: trunk/Websites/webkit.org/wp-content/plugins/tweet-listener.php (199490 => 199491)


--- trunk/Websites/webkit.org/wp-content/plugins/tweet-listener.php	2016-04-13 15:28:52 UTC (rev 199490)
+++ trunk/Websites/webkit.org/wp-content/plugins/tweet-listener.php	2016-04-13 15:42:24 UTC (rev 199491)
@@ -49,7 +49,7 @@
 
         $Tweet = new StdClass();
         $Tweet->id = substr($data->link, strrpos($data->link, '/') + 1);
-        $Tweet->text = $data->text;
+        $Tweet->text = stripslashes($data->text);
 
         $Tweet->entities = new StdClass();
         $Tweet->entities->urls = array();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to