diff --git a/ext/skeleton/skeleton.php b/ext/skeleton/skeleton.php
index 12e1e64bb40..91db9d54088 100644
--- a/ext/skeleton/skeleton.php
+++ b/ext/skeleton/skeleton.php
@@ -1,14 +1,16 @@
-
+";
+
if(!extension_loaded('extname')) {
dl('extname.' . PHP_SHLIB_SUFFIX);
}
$module = 'extname';
$functions = get_extension_funcs($module);
-echo "Functions available in the test extension:
\n";
+echo "Functions available in the test extension:$br\n";
foreach($functions as $func) {
- echo $func."
\n";
+ echo $func."$br\n";
}
-echo "
\n";
+echo "$br\n";
$function = 'confirm_' . $module . '_compiled';
if (extension_loaded($module)) {
$str = $function($module);