hholzgra Sun Jun 9 06:49:04 2002 EDT
Modified files:
/phpdoc/scripts/apply lower.php
Log:
removed unused stuff
Index: phpdoc/scripts/apply/lower.php
diff -u phpdoc/scripts/apply/lower.php:1.1 phpdoc/scripts/apply/lower.php:1.2
--- phpdoc/scripts/apply/lower.php:1.1 Sun Jun 9 06:41:41 2002
+++ phpdoc/scripts/apply/lower.php Sun Jun 9 06:49:04 2002
@@ -14,15 +14,6 @@
}
}
-# while( ereg("<function>([[:alnum:]_]+[[:upper:]][[:alnum:]_]+)</function>",
$input, $matches)) {
-# $name = $matches[1];
-# $lower = strtolower($name);
-# if($lower != $name) {
-# $input = str_replace("<function>$name</function>",
"<function>$lower</function>", $input);
-# $flag = true;
-# }
-# }
-
return $flag ? $input : false ;
}