summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJani Taskinen <jani@php.net>2007-07-24 11:15:29 +0000
committerJani Taskinen <jani@php.net>2007-07-24 11:15:29 +0000
commit5dceae6f8f5f5ab9ca4a696b7406661a2bec2cda (patch)
treefc730df266df172dd1446985de5c7160413b35c3
parentcbba608856e19d36a3d97da2dc202e90b7260736 (diff)
downloadphp-git-5dceae6f8f5f5ab9ca4a696b7406661a2bec2cda.tar.gz
- Removed useless file
-rw-r--r--ext/sockets/package.xml1
-rw-r--r--ext/sockets/sockets.php10
2 files changed, 0 insertions, 11 deletions
diff --git a/ext/sockets/package.xml b/ext/sockets/package.xml
index a25ea1fffc..2799fff13d 100644
--- a/ext/sockets/package.xml
+++ b/ext/sockets/package.xml
@@ -44,7 +44,6 @@ package.xml added to support installation using pear installer
</notes>
<filelist>
<file role="doc" name="CREDITS"/>
- <file role="doc" name="sockets.php"/>
<file role="src" name="config.m4"/>
<file role="src" name="config.w32"/>
<file role="src" name="php_sockets.h"/>
diff --git a/ext/sockets/sockets.php b/ext/sockets/sockets.php
deleted file mode 100644
index 3bb624cd57..0000000000
--- a/ext/sockets/sockets.php
+++ /dev/null
@@ -1,10 +0,0 @@
-<?
-$module = 'sockets';
-$function = 'confirm_' . $module . '_compiled';
-if (extension_loaded($module)) {
- $str = $function($module);
-} else {
- $str = "Module $module is not compiled in PHP";
-}
-echo "$str\n";
-?>