Migration to PDO database abstraction layer
[mirrors/Kyberia-bloodline.git] / wwwroot / backend / mysql / backend.inc
index 515b344aa00d701f4b52671bb35029d220fdd738..daba57b314d00aced86904a748ebd0d60c94d845 100644 (file)
@@ -181,9 +181,9 @@ function getUserByLogin($login) {
 static function getNodeIdByName($name, $external_link=false) {
        global $db;
 
-       $qh = sprintf('select node_id from nodes where node_name = "%s"', mysql_real_escape_string($name));
+       $qh = sprintf('select node_id from nodes where node_name = "%s"', db_escape_string($name));
        if ($external_link)
-               $qh .= sprintf(' and external_link="%s"', mysql_real_escape_string($external_link));
+               $qh .= sprintf(' and external_link="%s"', db_escape_string($external_link));
 
        $set = $db->query($qh);
        $set->next();
This page took 0.256751 seconds and 4 git commands to generate.