====== Create a Patch for ispCP ====== If you have made your own improvements to the ispCP code base, or if you just fixed some bugs and you want to contribute them to the community. A patch would be the right way to do so. \\ \\ If just one file is affected by your changes, create the patch like this: \\ \\ diff -uN original.php new.php > filename.patch \\ \\ If more then one file is affected, try this command and compare the whole trunk directory. \\ \\ diff -urN original_directory new_directory > filename.patch \\ \\ Don't forget to update your trunk to the newest revision before creating the patch.