web: fix typo

This commit is contained in:
David Anderson 2014-06-21 13:40:02 -07:00
parent eebfca71d3
commit b4dba535c0
3 changed files with 7 additions and 3 deletions

View File

@ -374,7 +374,7 @@ $astro_phys_chem = array(
),
array(
"ATLAS@Home",
"http://atlasathome.cern.ch/ATLAS/",
"http://atlasathome.cern.ch/",
tra("CERN (European Organization for Nuclear Research)"),
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."),

View File

@ -22,8 +22,8 @@
$generating_xml = false;
function project_dir() {
//return dirname(dirname(getcwd()));
return "../..";
$d = dirname(__FILE__);
return "$d/../..";
}
function web_stopped() {

View File

@ -24,6 +24,10 @@
// 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/util_basic.inc");