NobGit
public nobgit read

NobMail

Based on mailcow: dockerized

Languages

Repository composition by tracked source files.

PHP
PHP 49% JavaScript 35% HTML 9% CSS 4% Shell 2% Python 1% Lua 0% Perl 0% Ruby 0% SCSS 0%
Create file Wiki Documentation
Clone
https://nobgit.com/orgs/nobgit/nobmail.git
ssh://[email protected]:2222/orgs/nobgit/nobmail.git

Trace

data/web/inc/lib/array_merge_real.php

Trace helps you understand code history line by line. See who changed each line, when it changed, and which commit introduced it.

array_merge_real.php on main
Author Date Commit Line Code
tinect over 6 years ago e7821df

introduce json-files for translations (#3120)

Full commit hash
e7821df933e27c13ab39c1966e5fcba35fd5f11f
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
1
<?php
Open commit View diff
1 <?php
same change e7821df

introduce json-files for translations (#3120)

Full commit hash
e7821df933e27c13ab39c1966e5fcba35fd5f11f
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
2
Open commit View diff
2
same change e7821df

introduce json-files for translations (#3120)

Full commit hash
e7821df933e27c13ab39c1966e5fcba35fd5f11f
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
3
function array_merge_real()
Open commit View diff
3 function array_merge_real()
same change e7821df

introduce json-files for translations (#3120)

Full commit hash
e7821df933e27c13ab39c1966e5fcba35fd5f11f
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
4
{
Open commit View diff
4 {
same change e7821df

introduce json-files for translations (#3120)

Full commit hash
e7821df933e27c13ab39c1966e5fcba35fd5f11f
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
5
    $output = [];
Open commit View diff
5 $output = [];
same change e7821df

introduce json-files for translations (#3120)

Full commit hash
e7821df933e27c13ab39c1966e5fcba35fd5f11f
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
6
    foreach (func_get_args() as $array) {
Open commit View diff
6 foreach (func_get_args() as $array) {
same change e7821df

introduce json-files for translations (#3120)

Full commit hash
e7821df933e27c13ab39c1966e5fcba35fd5f11f
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
7
        foreach ($array as $key => $value) {
Open commit View diff
7 foreach ($array as $key => $value) {
same change e7821df

introduce json-files for translations (#3120)

Full commit hash
e7821df933e27c13ab39c1966e5fcba35fd5f11f
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
8
            $output[$key] = isset($output[$key]) ?
Open commit View diff
8 $output[$key] = isset($output[$key]) ?
same change e7821df

introduce json-files for translations (#3120)

Full commit hash
e7821df933e27c13ab39c1966e5fcba35fd5f11f
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
9
        array_merge($output[$key], $value) : $value;
Open commit View diff
9 array_merge($output[$key], $value) : $value;
same change e7821df

introduce json-files for translations (#3120)

Full commit hash
e7821df933e27c13ab39c1966e5fcba35fd5f11f
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
10
        }
Open commit View diff
10 }
same change e7821df

introduce json-files for translations (#3120)

Full commit hash
e7821df933e27c13ab39c1966e5fcba35fd5f11f
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
11
    }
Open commit View diff
11 }
same change e7821df

introduce json-files for translations (#3120)

Full commit hash
e7821df933e27c13ab39c1966e5fcba35fd5f11f
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
12
Open commit View diff
12
same change e7821df

introduce json-files for translations (#3120)

Full commit hash
e7821df933e27c13ab39c1966e5fcba35fd5f11f
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
13
    return $output;
Open commit View diff
13 return $output;
same change e7821df

introduce json-files for translations (#3120)

Full commit hash
e7821df933e27c13ab39c1966e5fcba35fd5f11f
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
14
}
Open commit View diff
14 }