summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 2e7ff47)
raw | patch | inline | side by side (parent: 2e7ff47)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 16 Apr 2007 13:09:46 +0000 (13:09 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 16 Apr 2007 13:09:46 +0000 (13:09 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@6057 594d385d-05f5-0310-b6e9-bd551577e9d8
plugins/addons/gotomasses/class_gotomasses.inc | patch | blob | history |
diff --git a/plugins/addons/gotomasses/class_gotomasses.inc b/plugins/addons/gotomasses/class_gotomasses.inc
index cc5527e6c72b9a88e59241d0ff0c651253ac3599..83a10850b73d5cb9c8774b0ef5e1fe47cf2ac431 100644 (file)
/* Include config object */
$this->config= $config;
-
$this->load_csv_data();
}
{
if($data == NULL){
if(!file_exists($this->file_to_read) || !is_readable($this->file_to_read)){
- print_red(sprintf(_("Can't locate or read goto masses csv storage file '%s'."),$this->file_to_read));
+ print_red(sprintf(_("Can't locate or read csv storage file '%s'."),$this->file_to_read));
return(FALSE);
}
$fp = @fopen($this->file_to_read,"r");
if(!$fp){
- print_red(sprintf(_("Can't read goto masses csv storage file '%s'."),$this->file_to_read));
+ print_red(sprintf(_("Can't read csv storage file '%s'."),$this->file_to_read));
return(FALSE);
}
function save_csv_data()
{
if(!file_exists($this->file_to_read) || !is_writeable($this->file_to_read)){
- print_red(sprintf(_("Can't locate or write goto masses csv storage file '%s'."),$this->file_to_read));
+ print_red(sprintf(_("Can't locate or write csv storage file '%s'."),$this->file_to_read));
}else{
-
$fp = @fopen($this->file_to_read,"w");
-
if(!$fp){
- print_red(sprintf(_("Can't write goto masses csv storage file '%s'."),$this->file_to_read));
+ print_red(sprintf(_("Can't write csv storage file '%s'."),$this->file_to_read));
}else{
$data = "";
foreach($this->contents as $val){