add common_compatible_license() function

darcs-hash:20081203032705-5ed1f-c425d8aef897b4223db3f2cb0250ed6fbe816f67.gz
This commit is contained in:
Evan Prodromou 2008-12-02 22:27:05 -05:00
parent 8b3080faf4
commit 06c7933168
1 changed files with 5 additions and 0 deletions

View File

@ -2081,3 +2081,8 @@ function common_memcache() {
return $cache;
}
}
function common_compatible_license($from, $to) {
# XXX: better compatibility check needed here!
return ($from == $to);
}