1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 05:25:56 +00:00

remove DB_PORT from the list of required config keywords (closes #310)

This commit is contained in:
Andrew Dolgov
2011-01-24 12:18:39 +03:00
parent 906fc5b7a1
commit 50ba64555d
2 changed files with 3 additions and 3 deletions

View File

@@ -10,7 +10,7 @@ echo ");" >> $DESTINATION
echo -n "\$requred_defines = array( " >> $DESTINATION
grep define\( config.php-dist | awk -F\' '{ print "*" $2 "*," }' | xargs echo -n | sed -e s/,$// -e s/*/\'/g >> $DESTINATION
grep define\( config.php-dist | awk -F\' '{ print "*" $2 "*," }' | xargs echo -n | grep -v DB_PORT | sed -e s/,$// -e s/*/\'/g >> $DESTINATION
echo "); ?>" >> $DESTINATION