X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fedit%2Fprocess%2Fpart_virtual_field.html;h=401e527018d6368efbe8081091b975b34504aa54;hb=38f5c59a6a3b92881c0f60bc8dccc9acd0feef41;hp=97be7e65e587e98bab7efa4158cf9f7861341038;hpb=d5b8de340fed6080ca521844131f78336b491cd9;p=freeside.git diff --git a/httemplate/edit/process/part_virtual_field.html b/httemplate/edit/process/part_virtual_field.html index 97be7e65e..401e52701 100644 --- a/httemplate/edit/process/part_virtual_field.html +++ b/httemplate/edit/process/part_virtual_field.html @@ -1,6 +1,7 @@ <% include( 'elements/process.html', 'table' => 'part_virtual_field', 'viewall_dir' => 'browse', + 'message' => [ 'Your custom field has been created, but will not be available untill Apache has been restarted.=warning', ], 'precheck_callback' => sub { my ($cgi) = @_; $act = 'edit' if $cgi->param('vfieldpart'); @@ -25,11 +26,13 @@ $dbh->commit or die $dbh->errstr; # reload schema - my $dbdef_file = "/usr/local/etc/freeside/dbdef.".datasrc # XXX: fix this + my $dbdef_file = "/usr/local/etc/freeside/dbdef.".datasrc; my $dbdef = new_native DBIx::DBSchema $dbh; $dbdef->save($dbdef_file); - delete $FS::Schema::dbdef_cache{$dbdef_file}; #force an actual reload - reload_dbdef($dbdef_file); + ## Stop reload of db schema as only reload current process and not others. Could be a pain to diagnose error. + ## Restart Apache to reload DB Schema for all. + #delete $FS::Schema::dbdef_cache{$dbdef_file}; #force an actual reload + #reload_dbdef($dbdef_file); warn "cf add done schema modification, time=".time; }