mirror of https://github.com/BOINC/boinc.git
web: fix typo
This commit is contained in:
parent
eebfca71d3
commit
b4dba535c0
|
@ -374,7 +374,7 @@ $astro_phys_chem = array(
|
||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
"ATLAS@Home",
|
"ATLAS@Home",
|
||||||
"http://atlasathome.cern.ch/ATLAS/",
|
"http://atlasathome.cern.ch/",
|
||||||
tra("CERN (European Organization for Nuclear Research)"),
|
tra("CERN (European Organization for Nuclear Research)"),
|
||||||
tra("Physics"),
|
tra("Physics"),
|
||||||
tra("ATLAS@Home uses volunteer computing to run simulations for ATLAS, a particle physics experiment at CERN's Large Hadron Collider. ATLAS searches for new particles and processes using head-on collisions of protons of extraordinary high energy."),
|
tra("ATLAS@Home uses volunteer computing to run simulations for ATLAS, a particle physics experiment at CERN's Large Hadron Collider. ATLAS searches for new particles and processes using head-on collisions of protons of extraordinary high energy."),
|
||||||
|
|
|
@ -22,8 +22,8 @@
|
||||||
$generating_xml = false;
|
$generating_xml = false;
|
||||||
|
|
||||||
function project_dir() {
|
function project_dir() {
|
||||||
//return dirname(dirname(getcwd()));
|
$d = dirname(__FILE__);
|
||||||
return "../..";
|
return "$d/../..";
|
||||||
}
|
}
|
||||||
|
|
||||||
function web_stopped() {
|
function web_stopped() {
|
||||||
|
|
|
@ -24,6 +24,10 @@
|
||||||
// See http://boinc.berkeley.edu/trac/wiki/AppVersionNew
|
// See http://boinc.berkeley.edu/trac/wiki/AppVersionNew
|
||||||
|
|
||||||
|
|
||||||
|
error_reporting(E_ALL);
|
||||||
|
ini_set('display_errors', true);
|
||||||
|
ini_set('display_startup_errors', true);
|
||||||
|
|
||||||
require_once("html/inc/boinc_db.inc");
|
require_once("html/inc/boinc_db.inc");
|
||||||
require_once("html/inc/util_basic.inc");
|
require_once("html/inc/util_basic.inc");
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue