CloneSet2000


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
1210.988statement
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
11159
libraries/joomla/environment/uri.php
21170
libraries/joomla/environment/uri.php
Clone Instance
1
Line Count
1
Source Line
159
Source File
libraries/joomla/environment/uri.php

                                        /*
                                         * To build the entire URI we need to prepend the protocol, and the http host
                                         * to the URI string.
                                         */
                                        $theURI=  'http'
                                                  .        $https
                                                  .                 $_SERVER['HTTP_HOST']
                                                  .                                         $_SERVER['REQUEST_URI'];


Clone Instance
2
Line Count
1
Source Line
170
Source File
libraries/joomla/environment/uri.php

                                        // IIS uses the SCRIPT_NAME variable instead of a REQUEST_URI variable... thanks, MS
                                        $theURI=  'http'
                                                  .        $https
                                                  .                 $_SERVER['HTTP_HOST']
                                                  .                                         $_SERVER['SCRIPT_NAME'];


Clone AbstractionParameter Count: 1Parameter Bindings

/*
                                         * To build the entire URI we need to prepend the protocol, and the http host
                                         * to the URI string.
                                         */
// IIS uses the SCRIPT_NAME variable instead of a REQUEST_URI variable... thanks, MS
$theURI='http'
        . $https
        . $_SERVER['HTTP_HOST']
        . $_SERVER[ [[#variable525fe000]]];
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#525fe000]]
'REQUEST_URI' 
12[[#525fe000]]
'SCRIPT_NAME'