~ubuntu-branches/ubuntu/trusty/freeguide/trusty

« back to all changes in this revision

Viewing changes to doc/sourceforge-redirects/VERSION.php

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Watkins
  • Date: 2008-09-07 15:49:32 UTC
  • mfrom: (1.2.6 upstream) (4.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20080907154932-2jvgv76btq068fe0
Tags: 0.10.9-1
* New upstream release. (Closes: #492789)
* Moved package from contrib to main. (Closes: #492544)
* Added lintian override for 'build-depends-without-arch-dep ant', as ant is
  used in the clean target.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
 
 
3
        print "0\n";
 
4
        print "10\n";
 
5
        print "7\n";
 
6
 
 
7
        $userlog = fopen( "/tmp/persistent/freeguide-tv/userlog.txt", "a" );
 
8
        
 
9
        $dt = date( "Y-m-d H:i:s" );
 
10
 
 
11
        $ip = $_GET{"ip"};
 
12
 
 
13
        if( $ip == "" ) {
 
14
 
 
15
                $ip = $_SERVER["REMOTE_ADDR"];
 
16
 
 
17
        }
 
18
 
 
19
        $ver = $_GET{"version"};
 
20
        
 
21
        fwrite( $userlog, $dt." - ".$ip." - ".$ver."\n" );
 
22
        
 
23
?>