Changes some icons.

This commit is contained in:
Lars Jung 2013-07-11 03:05:54 +02:00
parent 9340c5232c
commit 7f871403dc
10 changed files with 5 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 618 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 431 B

View file

Before

Width:  |  Height:  |  Size: 494 B

After

Width:  |  Height:  |  Size: 494 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 621 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 621 B

After

Width:  |  Height:  |  Size: 326 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 519 B

View file

@ -150,14 +150,17 @@ class App {
}
}
$rc = 200;
ob_start();
try {
$res = json_decode(file_get_contents($this->prot_host . $abs_href . '?version'));
if ($res->version === '{{pkg.version}}' && $res->href === $this->app_abs_href) {
return App::$MAGIC_SEQUENCE;
$rc = App::$MAGIC_SEQUENCE;
}
} catch (Exception $e) {}
ob_end_clean();
return 200;
return $rc;
}