The function smileys_update_6000() in smileys.install has the following line:

$ret[] = update_sql("UPDATE {smieys} SET image = REPLACE(image, 'example', 'Example')");

Is that supposed to be "smileys"? (missing "l")

Comments

reikiman’s picture

Status: Active » Needs review
diff -r 442b98e8652f sites/all/modules/smileys/smileys.install
--- a/sites/all/modules/smileys/smileys.install	Thu Jul 03 00:02:28 2008 -0700
+++ b/sites/all/modules/smileys/smileys.install	Thu Jul 03 00:02:48 2008 -0700
@@ -118,7 +118,7 @@
 
   // Change package name to reflect changed name.
   $ret[] = update_sql("UPDATE {smileys} SET package = 'Example' WHERE package = 'example'");
-  $ret[] = update_sql("UPDATE {smieys} SET image = REPLACE(image, 'example', 'Example')");
+  $ret[] = update_sql("UPDATE {smileys} SET image = REPLACE(image, 'example', 'Example')");
 
   return array_merge($ret);
 }
stokito’s picture

Status: Needs review » Patch (to be ported)
stephane bouillet’s picture

ok, hello,

but why this error still exist in the last package that we can download ???

Correct it please !

Gurpartap Singh’s picture

Status: Patch (to be ported) » Closed (duplicate)