Explorar el Código

Fix variable name typo

pdontthink hace 4 años
padre
commit
fc0a6742d4
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      class/mime/Disposition.class.php

+ 1 - 1
class/mime/Disposition.class.php

@@ -46,7 +46,7 @@ class Disposition {
      * @since 1.3.1
      * @since 1.3.1
      */
      */
     function getProperty($par) {
     function getProperty($par) {
-        $value = strtolower($par);
+        $par = strtolower($par);
         if (isset($this->properties[$par])) {
         if (isset($this->properties[$par])) {
             return $this->properties[$par];
             return $this->properties[$par];
         }
         }