Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
1 | 2 | 1 | 0.988 | statement |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 1 | 159 | libraries/joomla/environment/uri.php |
2 | 1 | 170 | 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']; |
| ||||
// IIS uses the SCRIPT_NAME variable instead of a REQUEST_URI variable... thanks, MS $theURI= 'http' . $https . $_SERVER['HTTP_HOST'] . $_SERVER['SCRIPT_NAME']; |
| |||
/* * 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 Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#525fe000]] | 'REQUEST_URI' |
1 | 2 | [[#525fe000]] | 'SCRIPT_NAME' |