diff options
author | Christian Schneider | 2008-07-15 13:46:57 +0000 |
---|---|---|
committer | Christian Schneider | 2008-07-15 13:46:57 +0000 |
commit | 69932f5576b6c5ca41515a6790dbd4946d71ab8c (patch) | |
tree | 723dd9f5754004c163d91203f2cb1b482d2a4c21 /itjs.class | |
parent | 806228fef0435fd18c51afcb9f872300956f2261 (diff) | |
download | itools-69932f5576b6c5ca41515a6790dbd4946d71ab8c.tar.gz itools-69932f5576b6c5ca41515a6790dbd4946d71ab8c.tar.bz2 itools-69932f5576b6c5ca41515a6790dbd4946d71ab8c.zip |
Make javascript stripping compatible with JQuery source code
Diffstat (limited to 'itjs.class')
-rw-r--r-- | itjs.class | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -136,7 +136,7 @@ function filenames($filelist) function strip($code) { if (!preg_match("/^devel/", $GLOBALS['ULTRASERVERTYPE'])) - $code = preg_replace(array('|\s//.*$|m', '|/\*.*?\*/|s', '|^\s+|m'), array(), $code); + $code = preg_replace(array('|\s//.*$|m', '|\s/\*.*?\s\*/|s', '|^\s+|m'), array(), $code); return $code; } |