diff options
author | Pascal Terjan <pterjan@mageia.org> | 2011-01-18 15:06:13 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@mageia.org> | 2011-01-18 15:06:13 +0000 |
commit | 48cb3e5e466ae51b03512190b06d17936c80942a (patch) | |
tree | 0e44e00df911f9af1dc5fa4e3d0b1e38d56858f8 | |
parent | 9fdda7e60bdef94d0a171edfa118ae52992361ae (diff) | |
download | pkgsubmit-48cb3e5e466ae51b03512190b06d17936c80942a.tar pkgsubmit-48cb3e5e466ae51b03512190b06d17936c80942a.tar.gz pkgsubmit-48cb3e5e466ae51b03512190b06d17936c80942a.tar.bz2 pkgsubmit-48cb3e5e466ae51b03512190b06d17936c80942a.tar.xz pkgsubmit-48cb3e5e466ae51b03512190b06d17936c80942a.zip |
Re-apply blino's fix
-rw-r--r-- | index.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -46,7 +46,7 @@ shell_exec('grep -v mga src.txt > src.mdv.txt'); chdir($upload_dir); -$all_files = shell_exec("find \( -name '*.rpm' -o -name '*.src.rpm.info' -o -name '*.youri' -o -name '*.lock' -o -name '*.done' \) ! -ctime $max_modified -printf \"%p\t%T@\\n\""); +$all_files = shell_exec("find \( -name '*.rpm' -o -name '*.src.rpm.info' -o -name '*.youri' -o -name '*.lock' -o -name '*.done' \) -ctime -$max_modified -printf \"%p\t%T@\\n\""); $re = "!^\./(\w+)/((\w+)/(\w+)/(\w+)/(\d+)\.(\w+)\.(\w+)\.(\d+))_?(.+)(\.src\.rpm(?:\.info)?|\.youri|\.lock|\.done)\s+(\d+\.\d+)$!m"; $r = preg_match_all($re, $all_files, |