@@ -104,7 +104,10 @@ |
||
| 104 | 104 | |
| 105 | 105 | passthru('php maintenance/flush.php'); |
| 106 | 106 | |
| 107 | -if ($is_dev) echo "Review changes, write something in WHATSNEW and FOCUS, and then commit with log 'Release $version.'" . PHP_EOL; |
|
| 108 | -else echo "Numbers updated to dev, no other modifications necessary!"; |
|
| 107 | +if ($is_dev) {
|
|
| 108 | + echo "Review changes, write something in WHATSNEW and FOCUS, and then commit with log 'Release $version.'" . PHP_EOL; |
|
| 109 | +} else {
|
|
| 110 | + echo "Numbers updated to dev, no other modifications necessary!"; |
|
| 111 | +} |
|
| 109 | 112 | |
| 110 | 113 | // vim: et sw=4 sts=4 |
@@ -15,7 +15,9 @@ |
||
| 15 | 15 | * explicitly says, "No, I do not need to migrate." |
| 16 | 16 | */ |
| 17 | 17 | |
| 18 | -if(!defined("PHORUM")) exit; |
|
| 18 | +if(!defined("PHORUM")) {
|
|
| 19 | + exit; |
|
| 20 | +} |
|
| 19 | 21 | |
| 20 | 22 | require_once(dirname(__FILE__) . "/../bbcode/bbcode.php"); |
| 21 | 23 | |