| Summary: | Update to Eclipse.org-common/classes/projects/ | ||
|---|---|---|---|
| Product: | Community | Reporter: | Nathan Gervais <nathan> |
| Component: | Website | Assignee: | phoenix.ui <phoenix.ui-inbox> |
| Status: | RESOLVED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | karl.matthias |
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | All | ||
| OS: | All | ||
| Whiteboard: | |||
|
Description
Nathan Gervais
In projectCategory.class.php I still see this, and I think it's not needed:
# smart connection does not work here
if (file_exists("/home/data/httpd/eclipse-php-classes/system/dbconnection_rw.class.php")) {
require_once "/home/data/httpd/eclipse-php-classes/system/dbconnection_rw.class.php";
}
=================================
In projectInfo.class.php
retrieval is in fact the correct spelling, not retreival. Don't forget the 'I before E except after C' rule.
Also, I believe $App->projectinfo_sql is not a wrong option here. I'm not sure which is better between $App->projectinfo_sql and eclipse_sql. In the end it probably doesn't matter. Karl?
The rest all looks dandy... Thanks!
(In reply to comment #1) > In projectCategory.class.php I still see this, and I think it's not needed: > # smart connection does not work here > if > (file_exists("/home/data/httpd/eclipse-php-classes/system/dbconnection_rw.class.php")) > { > require_once > "/home/data/httpd/eclipse-php-classes/system/dbconnection_rw.class.php"; > } > Removed, guess my brain parser wasn't really looking for this, thanks for catching it. > ================================= > In projectInfo.class.php > > retrieval is in fact the correct spelling, not retreival. Don't forget the 'I > before E except after C' rule. Those pesky comment spelling mistakes! Fixed. > Also, I believe $App->projectinfo_sql is not a wrong option here. I'm not > sure which is better between $App->projectinfo_sql and eclipse_sql. In the > end it probably doesn't matter. Karl? I coded them with eclipse_sql but will happily change them to projectinfo_sql if thats what's decided. (In reply to comment #1) > Also, I believe $App->projectinfo_sql is not a wrong option here. I'm not > sure which is better between $App->projectinfo_sql and eclipse_sql. In the > end it probably doesn't matter. Karl? Probably doesn't matter... the eclipse_sql calls dbconnection.class.php which is not path protected at all so it should be fine. Closing this as fixed. |